Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
603 views
in Technique[技术] by (71.8m points)

c# - BitmapImage to byte[] Windows 8 metro (WinRT)

I want to convert BitmapImage to byte[] in windows 8 application. I know how to do it using windows sdk but can't seem to get it working for WinRT sdk.

One or two posts are suggesting that I should use WritableBitmap to achieve that but there are no clear examples.

Conversion of BitmapImage to Byte array (Windows)

following is the best I found but still too vague for me

WinRT Loading an Image into a Byte array

I'll appreciate any help.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should look at the WriteableBitmapEx project here - http://writeablebitmapex.codeplex.com/ It is discussed here - WinRT Loading an Image into a Byte array... from the answer...

Basically you need to load the image into a WriteableBitmap, then access its pixel buffer by calling PixelBuffer.AsStream().


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...