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

i am using this code in my app which will help me to send a image.

however i have a image view with a image.i have no file in appbundle but have the image in my side.how can i change the below code.can any one tell me how can i convert myimage to NsData.

// Attach an image to the email
NSString *path = [[NSBundle mainBundle] pathForResource:@"rainy" ofType:@"jpg"];
NSData *myData = [NSData dataWithContentsOfFile:path];
[picker addAttachmentData:myData mimeType:@"image/jpeg" fileName:@"rainy"];
share|improve this question
UIImageJPEGRepresentation,UIImagePNGRepresentation both return nsdata of the image..... – Himanshu Agnihotri Oct 16 '12 at 14:35

2 Answers

up vote 61 down vote accepted

Try one of the following, depending on your image format:

UIImageJPEGRepresentation

Returns the data for the specified image in JPEG format.

NSData * UIImageJPEGRepresentation (
   UIImage *image,
   CGFloat compressionQuality
);

UIImagePNGRepresentation

Returns the data for the specified image in PNG format

NSData * UIImagePNGRepresentation (
   UIImage *image
);

Here the docs.

share|improve this answer
subscribing.... – headkit Feb 20 '12 at 13:21
NSData *imageData = UIImagePNGRepresentation(myImage.image);
share|improve this answer
What I looked for..:) – Dilip Rajkumar Jun 15 '12 at 7:49
I am using this line but this is very slow – user2128531 Mar 20 at 11:03

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.