在WPF中裁剪图像

时间:2015-10-18 17:40:10

标签: wpf image bitmapimage

提供图片:

Image tileSet = new Image();
tileSet.Source = new BitmapImage(new Uri(@".."));

如何裁剪它,定义一个矩形区域?

1 个答案:

答案 0 :(得分:1)

您可以{/ 3}}使用

var fullBitmap = new BitmapImage(new Uri(@".."));
tileSet.Source = new CroppedBitmap(fullBitmap, new Int32Rect(0, 0, 100, 100));