Convert Gif image to NSData

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

    Swift

    Gif must not be in assets.

    let path = Bundle.main.path(forResource: "loader", ofType: "gif")!
    let data = try! Data(contentsOf: URL(fileURLWithPath: path))
    return data
    

提交回复
热议问题