Reading AlbumArt: Difference between revisions
Jump to navigation
Jump to search
(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...") |
(No difference)
|
Latest revision as of 18:18, 29 May 2011
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"));