[android-developers] Re: How to convert a pdf file to other format
On Saturday, 20 October 2012 12:18:50 UTC+5:30, ashwini wrote:
--
Hi Developers,I want to convert a pdf file into other format like .txt and .doc etc..,if anyone know how to convert using android plz tell me and help me out...
Thanks&Regards,Ashwini V.
Document doc = new Document();
PdfWriter.getInstance(doc, new FileOutputStream("urgentz.pdf"));
doc.open();
Image image = Image.getInstance ("urgentzImageahslkdhaosd.jpg");
doc.add(new Paragraph("Your text blah bleh"));
doc.add(image);
doc.close();
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home