Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a 2D array of byte pixels from which I want to create a BitmapSource. Given BitmapSource.Create() requires a 1D array plus stride, how should I pass my 2D array?

My current solution is to use BlockCopy to copy to an intermediate 1D array:

int width = pixels2D.GetLength(1); int height = pixels2D.GetLength(0);
byte[] pixels1D = new byte [width * height ];
Buffer.BlockCopy(pixels2D, 0, pixels1D, 0, pixels1D.Length * sizeof(byte));
return BitmapSource.Create(width, height, 96, 96, System.Windows.Media.PixelFormats.Gray8,
                        null, pixels1D, stride: width * sizeof(byte));

but this relies on what I understand to be undefined packing of array dimensions. I would like a solution that avoids this, and ideally avoids copying the data. Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.