如何使用C#裁剪图像?我如何编写一个应用程序来裁剪C#中的图像?
3 回答
素胚勾勒不出你
TA贡献1827条经验 获得超9个赞
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);}
- 3 回答
- 0 关注
- 1031 浏览
添加回答
举报
0/150
提交
取消