-1

I'm getting the thumbnail image from a video, all I need is to serialize it how to do that. I've been doing some searches and I get nothing. I have the code of how to serialize an object, but I want to serialize the thumbnail image itself to get it later when I start my app up again.

Dan D.
  • 73,243
  • 15
  • 104
  • 123
Ibraheem Al-Saady
  • 854
  • 3
  • 14
  • 30

1 Answers1

0

you have an image or video feed ? if its an image, you can easily do it.

Have a look at http://writeablebitmapex.codeplex.com/ it provides extension methods to WriteableBitmap class that allows Resize in addition to tons of other things.

What you need to do is * Load the image into writeable bitmap * Resize it using extension methods * Have the image to stream ?

Hermit Dave
  • 3,036
  • 1
  • 13
  • 13
  • Hermit im getting the image from a video using GetThumbnailAsync(..) – Ibraheem Al-Saady Feb 21 '13 at 19:52
  • did you change your question ? there is nothing like Serialising your thumbnail however you can save it to file system. this link http://stackoverflow.com/questions/12349611/how-to-resize-image-in-c-sharp-winrt-winmd shows how to manipulate image and save it – Hermit Dave Feb 22 '13 at 09:42