我有三个作为 NSData 加载的 GIF 文件。当我使用该键kCGImagePropertyGIFLoopCount
检索 LoopCount 时,它返回一个错误的值。
对于应该无限循环的 GIF,它返回 0(正确)。
对于循环计数为 1 的 GIF,它返回 0(不正确)。
对于循环计数为 2 的 GIF,它返回 1(不正确)。
-(void)prepareGif:(NSData*)data {
CGImageSourceRef source = CGImageSourceCreateWithData((__bridge CFDataRef) data, NULL);
CFDictionaryRef properties = CGImageSourceCopyProperties(source, nil);
NSDictionary* imageProperties = (__bridge NSDictionary*) properties;
NSDictionary* gifProperty = imageProperties[(NSDictionary*) kCGImagePropertyGIFDictionary];
int loopCount = [gifProperty[(NSString*) kCGImagePropertyGIFLoopCount] intValue]; // returns 0 for LoopCount 1 and LoopCount 0 and returns 1 for LoopCount 2