Using ALAssetsLibrary and ALAsset take out Image as NSData

后端 未结 3 1561
青春惊慌失措
青春惊慌失措 2020-12-13 03:01

I wish to extract the image using ALAssetsLibrary and ALAsset directly in the form of a NSData object.

Using a NSURL I take out the image in the following manner.

3条回答
  •  轮回少年
    2020-12-13 03:10

    UIImage * selImage = [UIImage imageWithCGImage:[asset thumbnail]];       
    NSData *baseImage=UIImagePNGRepresentation(selImage);
    

提交回复
热议问题