Convert Gif image to NSData

后端 未结 4 569
后悔当初
后悔当初 2021-01-17 13:57

I have a gif image in my photo album. When I use the UIImagePickerController to select that image, I need to convert the image to NSData for storin

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-17 14:27

    https://github.com/mattt/AnimatedGIFImageSerialization

    UIImage *image = ...;
    NSData *data = [AnimatedGIFImageSerialization animatedGIFDataWithImage:image
                                                                  duration:1.0
                                                                 loopCount:1
                                                                     error:nil];
    

提交回复
热议问题