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?
Stream
Album.GetArt
MediaLibrary
Image
Easy... var img = Bitmap.FromStream(stream);
var img = Bitmap.FromStream(stream);