C# 截取GDI+绘制图形里的内容保存为图片
C#怎么截取GDI+绘制图形里的内容保存为图片?绘制的图形是由GraphicsPath结构组成的一个圆。...
C# 怎么截取GDI+绘制图形里的内容保存为图片?绘制的图形是由GraphicsPath结构组成的一个圆。
展开
展开全部
GDI的上下文可以是来自图片的。下面是示例
// Create image.
Image imageFile = Image.FromFile("SampImag.jpg");
// Create graphics object for alteration.
Graphics newGraphics = Graphics.FromImage(imageFile);
// Alter image.
newGraphics.FillRectangle(new SolidBrush(Color.Black), 100, 50, 100, 100);
// Draw image to screen.
e.Graphics.DrawImage(imageFile, new PointF(0.0F, 0.0F));
// Dispose of graphics object.
newGraphics.Dispose();
绘制完成后可以使用Image.Save();保存
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询