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.
Asked
Active
Viewed 578 times
-1
-
How is this different from [your previous question](http://stackoverflow.com/q/14997495/41071)? – svick Feb 21 '13 at 12:18
-
Serialize it to what? – Jerry Nixon Feb 21 '13 at 18:36
-
svick it doesn't but i need to get more answers :D – Ibraheem Al-Saady Feb 21 '13 at 19:50
1 Answers
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