3

Anyone knows how to convert a bitmap to PNG or JPG using Objective C assuming I have

CGImageRef imageRef;

Adam Davis
  • 91,931
  • 60
  • 264
  • 330
Daniel
  • 141
  • 4
  • 7

1 Answers1

7
UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
NSData *jpgData = UIImageJPEGRepresentation(myImage);
Alex Wayne
  • 178,991
  • 47
  • 309
  • 337