c# – 在Windows Store App的.mp3文件中获取Albumart

如何在mp3文件中获取AlbumArt图像?我正在使用c#开发Windows应用商店应用.MusicProperties类给了我专辑名称艺术家名称vs.但它不能给我albumart.解决方法:查看MSDN示例以显示任何文件的缩略图.它还包括如何检索专辑封...

如何在mp3文件中获取AlbumArt图像?我正在使用c#开发Windows应用商店应用.

MusicProperties类给了我专辑名称艺术家名称vs.但它不能给我albumart.

解决方法:

查看MSDN示例以显示任何文件的缩略图.它还包括如何检索专辑封面.

File and folder thumbnail sample

如果您想保存专辑封面,请查看How to store save Thumbnail image in device in windows 8 metro apps c#

更新1

MediaFile是StorageFile. ImageControl是< Image ... />

using (StorageItemThumbnail thumbnail = await MediaFile.GetThumbnailAsync(ThumbnailMode.MusicView, 300))
{
    if (thumbnail != null && thumbnail.Type == ThumbnailType.Image)
    {
        var bitmapImage = new BitmapImage();
        bitmapImage.SetSource(thumbnail);
        ImageControl.Source = bitmapImage;
    }
}

本文标题为:c# – 在Windows Store App的.mp3文件中获取Albumart

基础教程推荐