小编典典

如何使用C#裁剪图像?

c#

如何编写将在C#中裁剪图像的应用程序?


阅读 265

收藏
2020-05-19

共1个答案

小编典典

您可以用来Graphics.DrawImage从位图将裁剪的图像绘制到图形对象上。

Rectangle cropRect = new Rectangle(...);
Bitmap src = Image.FromFile(fileName) as Bitmap;
Bitmap target = new Bitmap(cropRect.Width, cropRect.Height);

using(Graphics g = Graphics.FromImage(target))
{
   g.DrawImage(src, new Rectangle(0, 0, target.Width, target.Height), 
                    cropRect,                        
                    GraphicsUnit.Pixel);
}
2020-05-19