I'm working on an iPhone app to embed/extract data in jpeg files. I want to give the user the ability to copy the resulting image to the clipboard, but the code I'm using coverts the resulting jpeg into a png when it gets copied to the clipboard.

I'm using the code below, is there anything I can do to ensure it is a bit by bit copy and paste of the jpeg?

// copy to clipboard
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.image = [UIImage imageNamed:@"output.jpg"];

Thanks in advance!

link|improve this question

69% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I finally figured this one out.

// copy to clipboard
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSData *data = [NSData dataWithContentsOfFile:filePath];
[pasteboard setData:data forPasteboardType:@"public.jpeg"];
link|improve this answer
Hey Ben, I use this too, but I found out that whatever pulls the image off the pasteboard turns it back into a png. Thoughts? – Mark Johnson Jan 28 at 19:30
Sorry, I missed this comment...Anyway how are you pulling it off the clipboard? I never had any problems with that. I can post the code to retrieve it later when I find my code. – Ben Holland May 24 at 17:07
feedback

Your Answer

 
or
required, but never shown

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