Create a BitmapImage from a byte array

心不动则不痛 提交于 2019-11-26 23:06:52

Given an array of bytes where each byte represents a pixel value, you may create a grayscale bitmap like shown below. You need to specify the width and height of the bitmap, and that must of course match the buffer size.

byte[] buffer = ... // must be at least 10000 bytes long in this example

var width = 100; // for example
var height = 100; // for example
var dpiX = 96d;
var dpiY = 96d;
var pixelFormat = PixelFormats.Gray8; // grayscale bitmap
var bytesPerPixel = (pixelFormat.BitsPerPixel + 7) / 8; // == 1 in this example
var stride = bytesPerPixel * width; // == width in this example

var bitmap = BitmapSource.Create(width, height, dpiX, dpiY,
                                 pixelFormat, null, buffer, stride);

Each byte value may also represent an index into a color palette, in which case your would have to specify PixelFormats.Indexed8 and of course also pass in an appropriate color palette.

The byte array must contain valid image data (PNG / JPG / BMP). If you remove the using-block and the data is valid then your Code should work. BitmapImage doesn't seem to load the image immediatly, so it can't load it afterwards because the stream is already disposed.

What do you mean by "arbitrary values"? Random RGB values? Then I propose to use the Bitmap class and save the resulting Bitmap in a Memorystream.

If you just want to bind a Byte[] to and Image Control in your userinterface: Bind directly to the array. It works without a converter.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!