System.Drawing.Graphics,绘制表格?

时间:2017-07-05 23:33:01

标签: c# asp.net drawrectangle system.drawing.graphics

有没有人有任何使用此System.Drawing.Graphics库使用DrawRectangle或DrawRectangles或任何其他方法绘制表的示例?

我正在尝试使用DrawRectangle进行设置,但这很困难,做一些简单的事情需要很长时间,这是一个不直观的工具。 我在网上制作了一些文章,但到目前为止我还没有找到任何东西。

1 个答案:

答案 0 :(得分:1)

解决方案如下:

protected void Page_Load(object sender, EventArgs e) 
{
    var image = new Bitmap(800, 600);
    try 
    {
        var graph = Graphics.FromImage(image);
        graph.FillRectangle(Brushes.White, new Rectangle(new Point(0, 0), image.Size));
        for (int col = 0; col < image.Width; col += 100) {
            graph.DrawLine(Pens.Black, new Point(col, 0), new Point(col, image.Height));
        }
        for (int row = 0; row < image.Height; row += 30) {
            graph.DrawLine(Pens.Black, new Point(0, row), new Point(image.Width, row));
        }
        graph.DrawRectangle(Pens.Black, new Rectangle(0, 0, image.Width - 1, image.Height - 1));

        Response.Clear();
        Response.ContentType = "image/jpeg";
        image.Save(Response.OutputStream, ImageFormat.Jpeg);
        Response.End();
    } 
    finally 
    {
        image.Dispose();
    }
}