Given a WriteableBitmap, how can I save the bitmap back into an image stream (JPG or BMP)?

My scenario is:

  1. Show OpenFileDialog, let user select image
  2. Load image into WriteableBitmap
  3. Resize image
  4. Send image stream to web service

Step #4 is what I'm having trouble with. How can I go from WriteableBitmap -> Stream?

link|improve this question

Check this link, it takes help of third party: blog.blueboxes.co.uk/2009/07/21/… – Malcolm Jul 13 '10 at 7:21
That link uses the FJCore library, which only supports JPG encoding. – Judah Himango Jul 14 '10 at 16:17
feedback

1 Answer

up vote 1 down vote accepted

Ok, so Silverlight doesn't have anything built-in to turn a WriteableBitmap into an image stream.

After much wailing and gnashing of teeth, I found the excellent open source ImageTools library for Silverlight, which provides encoders and decoders for JPG, BMP, GIF, and PNG.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.