ios - 当 GIF 有大量帧时,Xcode GIF 输出颜色失真

标签 ios xcode gif

我正在使用以下代码在 xcode 中创建 GIF:

NSURL *documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:YES error:nil];
NSURL *fileURL = [documentsDirectoryURL URLByAppendingPathComponent:@"animated.gif"];
CGImageDestinationRef destination = CGImageDestinationCreateWithURL((__bridge CFURLRef)fileURL, kUTTypeGIF, imageArray.count, NULL);

NSMutableDictionary *dict = [NSMutableDictionary dictionaryWithCapacity:5];

NSDictionary *frameProperties = [NSDictionary dictionaryWithObject:dict forKey:(NSString *)kCGImagePropertyPNGDictionary];

NSMutableDictionary *dict2 = [NSMutableDictionary dictionaryWithCapacity:5];

const uint8_t colorTable2[9] = {0, 0, 0, 128, 128, 128, 255,255,255};
NSData *colorTableData2 = [NSData dataWithBytes:colorTable2 length:9];

[dict2 setObject:colorTableData2 forKey:(NSString *)kCGImagePropertyGIFImageColorMap];
[dict2 setObject:[NSNumber numberWithInt:0] forKey:(NSString *)kCGImagePropertyGIFLoopCount];
[dict2 setObject:[NSNumber numberWithFloat:0.005] forKey:(NSString *)kCGImagePropertyGIFDelayTime];

NSDictionary *gifProperties = [NSDictionary dictionaryWithObject:dict2 forKey:(NSString *) kCGImagePropertyGIFDictionary];

for (int i = 0; i < imageArray.count; i++) {
    UIImage *image = [UIImage imageWithContentsOfFile:[imageArray objectAtIndex:i]];
    CGImageDestinationAddImage(destination, image.CGImage, (__bridge CFDictionaryRef)frameProperties);
}

CGImageDestinationSetProperties(destination, (__bridge CFDictionaryRef)gifProperties);
CGImageDestinationFinalize(destination);
CFRelease(destination);

这里的问题是,如果 imageArray.count 小于 23,则输出的 GIF 将不包含颜色失真。如果大于 22,颜色失真将以图像 block 的形式出现,采用背景颜色而不是原始颜色。

我认为我没有设置任何代码来执行图像压缩,所以我不确定为什么会这样。如果有人可以对这个问题提供一些见解,那将对我有很大帮助。

编辑: 我保存了每个单独的帧,以确保颜色失真不是由帧​​本身引起的。因此我觉得这与CG框架有关。

谢谢。

最佳答案

尝试使用 ImageIO.framework 框架在 iOS APP 中使用 GIF,我的 GIF 图像也变得扭曲,但后来我使用了这个方法,它们很好

NSURL *url1 = [[NSBundle mainBundle] URLForResource:@"YourImage" withExtension:@"gif"];

self.imageView.image = [UIImage animatedImageWithAnimatedGIFData:[NSData dataWithContentsOfURL:url1]];

他们在这之后一切顺利

关于ios - 当 GIF 有大量帧时,Xcode GIF 输出颜色失真,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24906092/

相关文章:

ios - WatchKit:推送和模态转场之间的区别?没有带推送的页面导航?

ios - -stdlib=libc++ 的无效部署目标

iphone - ComboBox 在 UIScrollView 中不起作用

markdown - 有没有办法将动画 GIF 添加到 Markdown 文件中?

macos - 从GIF提取帧

ios - 适用于 iOS 投票应用的最佳 BaaS

ios - 错误 itms-90122 - 可执行文件大小无效

iphone - "Storyboard.storyboard"无法打开

ios - 使用 NSManagedObject 子类中的字符串设置 TextField 的文本时出现问题

php - 调整大小后的 GIF 图像变为黑色