3

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

CGImageRef imageRef;

Adam Davis
  • 89,812
  • 58
  • 259
  • 331
Daniel
  • 141
  • 4
  • 7

1 Answers1

7
UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
NSData *jpgData = UIImageJPEGRepresentation(myImage);
Alex Wayne
  • 162,909
  • 46
  • 287
  • 312