gdi+(7)画不规则形

来源:互联网 发布:weibull软件 编辑:程序博客网 时间:2024/05/29 18:19

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

using System.Drawing;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Bitmap bitmap = new Bitmap(250, 150);
        Graphics g = Graphics.FromImage(bitmap);
        g.Clear(Color.YellowGreen);
        Font font1 = new Font("宋体", 12);   //设置字体类型和大小
        Brush brush = new SolidBrush(Color.Blue);  //设置画刷颜色
        Pen myPen = new Pen(Color.Blue, 5);  //创建画笔对象
        g.DrawString("GDI+绘制基数样条", font1, brush, 80, 5);
        Point[] myPoints = { new Point(80, 20), new Point(40, 50), new Point(80, 80), new Point(160, 80), new Point(200, 50), new Point(160, 20) };
        g.DrawCurve(myPen, myPoints, 1.0F);
        System.IO.MemoryStream ms = new System.IO.MemoryStream();
        bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
        Response.ClearContent();
        Response.ContentType = "image/Gif";
        Response.BinaryWrite(ms.ToArray());
    }
}

0 0
原创粉丝点击