Problems creating an animated gif in Swift

2020-07-22 04:06发布

I am trying to create an animated gif from an array of 4 UIImage elements in Swift but currently it only saves the first frame.

let url = NSURL(fileURLWithPath: photosDirectory)?.URLByAppendingPathComponent(filename())

if let url = url {
    let fileProperties = [kCGImagePropertyGIFDictionary as String: [kCGImagePropertyGIFLoopCount as String: 0]]
    let gifProperties = [kCGImagePropertyGIFDictionary as String: [kCGImagePropertyGIFDelayTime as String: 0.125]]
    let destination = CGImageDestinationCreateWithURL(url, kUTTypeGIF, photos.count, nil)

    CGImageDestinationSetProperties(destination, fileProperties)

    for photo in photos {
        CGImageDestinationAddImage(destination, photo.CGImage, gifProperties)
    }

    return CGImageDestinationFinalize(destination)
}
else {
    return false
}

photos is the array of UIImages filename() just returns a string like 20150805.gif

It returns true but only the first frame is in the gif

标签: ios swift gif
1条回答
够拽才男人
2楼-- · 2020-07-22 04:40

kCGImagePropertyGIFDelayTime should be in float not double.

try setting 0.125f instead of 0.125

查看更多
登录 后发表回答