Reputation: 4501
Is it possible to download a particular screen in an iphone application as a PDF? I have checked the iphone Developer portal and a lot of other places but couldnt find the answer. All i want to do is click on a button and that should download that screen as a pdf and store it in some place. Is this possible? If so where would you store it?
Upvotes: 3
Views: 293
Reputation: 18865
If you split your question in two questions - the answer is simple.
Q1) how can i take a screenshot programatically (into UIImage)?
A1) How to take a screenshot programmatically
Q2) how can i convert a UIImage to PDF file?
A2) Converting UIImage into PDF File
Upvotes: 2