Convert a bitmap to PNG or JPG using Objective-C

Does anyone know how to convert a bitmap to PNG or JPG using Objective-C, assuming I have

CGImageRef imageRef;

+3
source share
1 answer
UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
NSData *jpgData = UIImageJPEGRepresentation(myImage);
+7
source

Source: https://habr.com/ru/post/1722963/


All Articles