我在媒体库中有大图像(5000 * 5000 像素)。我只需要拍摄部分图像。假设它从 x=200 y=200 及其 1000 像素的宽度和高度开始。我怎样才能做到这一点 ?我对此没有任何好的解决方案。
我找到的唯一解决方案:
使用 photochoosertask.... 然后
var b = new WriteableBitmap(5000, 5000);
b.LoadJpeg(e.ChosenPhoto);
WriteableBitmap wb = b.Crop(200, 200, 1000, 1000);
image1.Source = wb
但结果质量很差,我也遇到了一些内存问题......