本文介绍了是否有可能将文本转换成PDF Android中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想通过我的应用程序创建一个PDF文件,并希望将PDF文件发送的电子邮件的附件。是否有可能在Android的?如果是,请说明如何。
I want create a PDF file through my application and want to send the PDF file as an attachment by e-mail. Is it possible in Android? If yes please show how.
推荐答案
下面是code
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();
使用与你的Android项目
Use the iText library with your android project
这篇关于是否有可能将文本转换成PDF Android中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!