使用SharpAvi添加ImageSource

时间:2018-08-25 11:42:22

标签: c# wpf

我正在使用SharpAvi,并且要添加图像。我的ImageSource以字节为单位,我无法将图像写入流。我收到此异常:

  

“ System.ArgumentException:'缓冲区大小不足。'

在文档中,我读到我需要写DIB。如何将ImageSource转换为Windows DIB?

range

1 个答案:

答案 0 :(得分:0)

我通过使用此功能解决了问题:

    private byte[] BitmapSourceToArray(BitmapSource bitmapSource)
    {
        // Stride = (width) x (bytes per pixel)
        int stride = (int)bitmapSource.PixelWidth * (bitmapSource.Format.BitsPerPixel / 8);
        byte[] pixels = new byte[(int)bitmapSource.PixelHeight * stride];

        bitmapSource.CopyPixels(pixels, stride, 0);

        return pixels;
    }