How to convert System.IO.Stream into an Image?
c#, image, stream, windows-phone-7, windows-phone-8
Solution
Easy... `var img = Bitmap.FromStream(stream);`
Problem
How can I convert a `Stream` of an image (which I retrieved using the `Album.GetArt` method from the `MediaLibrary`) into a usable `Image` in my application?