Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to take a path draw in an UIView with CGPath and export it as a PNG?

share|improve this question
Yes. Oh, I suppose you wanted code didn't you?.. – U62 Dec 3 '09 at 0:32
No, to be honest, i just want a pointer to know better. I do not want the fish, i do want to learn how to fish. – ariel Dec 3 '09 at 1:43
Anyhow, thanks. The yes is something really big. The how is also important, but just to know it is possible is good. – ariel Dec 3 '09 at 1:44

2 Answers

up vote 3 down vote accepted

Assuming you want a UIImage, not a png file, you can do something like this:

UIGraphicsBeginImageContext(size); 
CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextSetLineWidth(context, 2.0);
CGContextSetLineCap(context, kCGLineCapSquare);

//DRAW YOUR PATH HERE

CGContextStrokePath(context);

myUIImage = UIGraphicsGetImageFromCurrentImageContext();
[myUIImage retain];  

UIGraphicsEndImageContext();
share|improve this answer
This can however cause blurred images. UIGraphicsBeginImageContextWithOptions can be used with its last argument as 0.0 to avoid this. – Helium3 Aug 7 '12 at 17:48

The cleanest way to do that is to perform the whole drawing again in an image context produced by UIGraphicsBeginImageContext(), get an UIImage out of it, then save it via the UIImagePNG/JPEGRepresentation() functions.

Note that UIView do not "hold" images. You can rerender a UIView's layer, but it's a gross violation of MVC (you're using views to store model data!), and it doesn't look clean to me.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.