我正在尝试将BitmapSource的一部分复制到WritableBitmap。
到目前为止,这是我的代码:
var bmp = image.Source as BitmapSource;
var row = new WriteableBitmap(bmp.PixelWidth, bottom - top, bmp.DpiX, bmp.DpiY, bmp.Format, bmp.Palette);
row.Lock();
bmp.CopyPixels(new Int32Rect(top, 0, bmp.PixelWidth, bottom - top), row.BackBuffer, row.PixelHeight * row.BackBufferStride, row.BackBufferStride);
row.AddDirtyRect(new Int32Rect(0, 0, row.PixelWidth, row.PixelHeight));
row.Unlock();
我得到“ArgumentException:值不在预期的范围内。”在CopyPixels
。
我尝试使用row.PixelHeight * row.BackBufferStride
交换row.PixelHeight * row.PixelWidth
,但后来收到错误消息称该值太低。
我找不到使用CopyPixels
的重载的单个代码示例,所以我正在寻求帮助。
谢谢!
答案 0 :(得分:20)
图像的哪个部分正在尝试复制?改变目标ctor中的宽度和高度,以及Int32Rect中的宽度和高度以及x&的前两个参数(0,0)。 y偏移到图像中。或者如果你想复制整件事就离开。
BitmapSource source = sourceImage.Source as BitmapSource;
// Calculate stride of source
int stride = source.PixelWidth * (source.Format.BitsPerPixel + 7) / 8;
// Create data array to hold source pixel data
byte[] data = new byte[stride * source.PixelHeight];
// Copy source image pixels to the data array
source.CopyPixels(data, stride, 0);
// Create WriteableBitmap to copy the pixel data to.
WriteableBitmap target = new WriteableBitmap(
source.PixelWidth,
source.PixelHeight,
source.DpiX, source.DpiY,
source.Format, null);
// Write the pixel data to the WriteableBitmap.
target.WritePixels(
new Int32Rect(0, 0, source.PixelWidth, source.PixelHeight),
data, stride, 0);
// Set the WriteableBitmap as the source for the <Image> element
// in XAML so you can see the result of the copy
targetImage.Source = target;