Convert Gif image to NSData

后端 未结 4 571
后悔当初
后悔当初 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:28

    Code to coverting .GIF file can converted in NSdata -

    NSString *pathForFile = [[NSBundle mainBundle] pathForResource: @"myGif" ofType: @"gif"];
    
    NSData *dataOfGif = [NSData dataWithContentsOfFile: pathForFile];
    
    NSLog(@"Data: %@", dataOfGif);
    

提交回复
热议问题