Using C#, is there a better way to convert a Windows Bitmap to a byte[] than saving to a temporary file and reading the result using a FileStream?
|
|
|
There are a couple ways. ImageConverter
This one is convenient because it doesn't require a lot of code. Memory Stream
This one is equivalent to what you are doing, except the file is saved to memory instead of to disk. Although more code you have the option of ImageFormat and it can be easily modified between saving to memory or disk. |
|||
|
|
|
A MemoryStream can be helpful for this. You could put it in an extension method:
You could just use it like:
I partially disagree with prestomanifto's answer in regards to the ImageConverter. Do not use ImageConverter. There's nothing technically wrong with it, but simply the fact that it uses boxing/unboxing from object tells me it's code from the old dark places of the .NET framework and its not ideal to use with image processing (it's overkill for converting to a byte[] at least), especially when you consider the following. I took a look at the |
|||||||||
|
|
Save the Image to a MemoryStream and then grab the byte array. http://msdn.microsoft.com/en-us/library/ms142148.aspx
|
|||
|
|
|
Try the following:
Make sure you are using:
|
|||
|
|
|
||||
|
|
|
Use a
|
|||||||||||||
|
|
I believe you may simply do:
|
|||
|
|
|
Hi Please follow this link for converting bitmap to byte array http://www.vbforums.com/showthread.php?t=358917 |
|||
|
|