如何在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
基础教程推荐
猜你喜欢
- C#类和结构详解 2023-05-30
- C#控制台实现飞行棋小游戏 2023-04-22
- unity实现动态排行榜 2023-04-27
- 一个读写csv文件的C#类 2022-11-06
- C# windows语音识别与朗读实例 2023-04-27
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- ZooKeeper的安装及部署教程 2023-01-22
- winform把Office转成PDF文件 2023-06-14
- C# 调用WebService的方法 2023-03-09
- C# List实现行转列的通用方案 2022-11-02