Brandon
Brandon

Reputation: 2125

Problems creating an animated gif in Swift

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

Upvotes: 3

Views: 2203

Answers (1)

Eph Bee
Eph Bee

Reputation: 265

kCGImagePropertyGIFDelayTime should be in float not double.

try setting 0.125f instead of 0.125

Upvotes: 2

Related Questions