Reading AlbumArt

From MediaMonkey Wiki
Revision as of 18:18, 29 May 2011 by Gramatus (talk | contribs) (Created page with "In order to read AlbumArt in an external application you need to save it as a temp file. For more information on doing this, see ISDBImage::ImageData. To show the image in yo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

In order to read AlbumArt in an external application you need to save it as a temp file. For more information on doing this, see ISDBImage::ImageData. To show the image in your application you could then do something like:

using System.Windows.Media.Imaging;

BitmapImage AlbumArt = new BitmapImage(new Uri(@"C:\SomeFileName.jpg"));