Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to do something really simple which is select a picture from the iPhone library add it to my view. Then add another little image (let's say a cartoon smile in PNG) to my view and then when I click in a UIBarButtonItem save the result in my photo library.

I know how to save a UIImage to my library but I don't know how to create a JPG from the my view (without the toolbar !) with good quality. I tried doing a snapshot but I got a little image (resolution) with a poor quality !

Do you have any idea how I could do this ?

Thanks in advance !

Edit : My code for the snapshot

UIGraphicsBeginImageContext(self.editableView.frame.size);
[self.editableView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

I even tried this trick to save it as PNG !

UIImage* im = [UIImage imageWithCGImage:image.CGImage]; // make image from CGRef
NSData* imdata =  UIImagePNGRepresentation ( im ); // get PNG representation
UIImage* im2 = [UIImage imageWithData:imdata]; // wrap UIImage around PNG representation


UIImageWriteToSavedPhotosAlbum(im2, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
share|improve this question
What code are you using to snapshot? – Anton Holmquist Jul 4 '12 at 15:11
@AntonHolmquist I just edited my post – Dave Jul 4 '12 at 15:14
Try using UIGraphicsBeginImageContextWithOptions(self.editableView.frame.size, YES, 0.0) to get a higher quality image. – Anton Holmquist Jul 4 '12 at 15:36
@AntonHolmquist Looks a little bit better but the colors aren't really bright compare to the view in my app. Do you have an idea ? – Dave Jul 4 '12 at 15:53
If you have any non-opaque parts to the image you may be missing the effects of that, in which case do UIGraphicsBeginImageContextWithOptions(self.editableView.frame.size, NO, 0.0) – Tonester Jul 5 '12 at 13:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.