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

I can create UIImage from NSData using [UIImage imageWithdata:] or [UIImage initWithData] method.

I wonder if I can get the NSData* back from an existing UIImage* ?
something on the line of NSData* myData = [myImage getData];

Is this impossible?
Thank you

share|improve this question

1 Answer

up vote 53 down vote accepted
NSData *imageData = UIImageJPEGRepresentation(image, 0.7); // 0.7 is JPG quality

or

NSData *imageData = UIImagePNGRepresentation(image);

Depending if you want your data in PNG format or JPG format.

share|improve this answer
7  
I don't know why this answer is up-voted so many times nor that it is accepted. The OP asked to retrieve the data that was given initially. Using UIImageJPEGRepresentation or UIImagePNGRepresentation will alter the data and do a reconversion. Is there any way to really achieve what was asked for? – CipherCom Mar 12 at 18:19

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.