我正在尝试使用这些代码行获取mp3文件的图片。
CFDataRef AlbumPic= nil;
UInt32 picDataSize = sizeof(picDataSize);
err =AudioFileGetGlobalInfo(kAudioFilePropertyAlbumArtwork, 0, NULL, &picDataSize, &AlbumPic);
if( err != noErr ) {
NSLog( @"error" );
}
NSData* imagedata= (__bridge NSData*)AlbumPic;
UIImage* image=[[UIImage alloc]initWithData:imagedata];
如果我正在使用:
NSLog (@"image %@, image");
或
NSLog (@"image %@, [image description]");
有NULL。
如何使用kAudioFilePropertyAlbumArtwork获取mp3文件的图片?
答案 0 :(得分:0)
您想要的功能是AudioFileGetProperty
,而不是AudioFileGetGlobalInfo