111,126
社区成员
发帖
与我相关
我的任务
分享Graphics g = CreateGraphics(); System.Drawing.Image image=new System.Drawing.Bitmap(100,100);
Graphics g = Graphics.FromImage(image);
Pen p = new Pen(Color.Blue, 10);
g.DrawLine(p, 10, 10, 100, 100);