Anyone knows how to convert a bitmap to PNG or JPG using Objective C assuming I have
CGImageRef imageRef;
Anyone knows how to convert a bitmap to PNG or JPG using Objective C assuming I have
CGImageRef imageRef;
UIImage *myImage = [UIImage imageWithCGImage:imageRef];
NSData *pngData = UIImagePNGRepresentation(myImage);
NSData *jpgData = UIImageJPEGRepresentation(myImage);