iDevGames Forums
Image out of Phone - Printable Version

+- iDevGames Forums (http://www.idevgames.com/forums)
+-- Forum: Development Zone (/forum-3.html)
+--- Forum: iPhone, iPad & iPod Game Development (/forum-11.html)
+--- Thread: Image out of Phone (/thread-1826.html)



Image out of Phone - Neocron - Jan 30, 2009 11:12 AM

Is there a way to create an image with the iphone?

For example: I have drawn a rect and want to export this rect as an image (.png or whatever), is there a way to do that?

Regards,
Neocron


Image out of Phone - maximile - Jan 30, 2009 03:03 PM

Just came across this snippet from here while looking for something else:

Code:
UIGraphicsBeginImageContext(self.view.frame.size);
[[self.view layer] renderInContext:UIGraphicsGetCurrentContext()];
UIImage* test = UIGraphicsGetImageFromCurrentImageContext();
UIImageView* view = [[UIImageView alloc] initWithImage:test];
UIGraphicsEndImageContext();

Might be a good start.