将JPG转换为pdf在document.open()行中抛出异常
com.itextpdf.text.document document = new com.itextpdf.text.document();pdfWriter.getInstance( document, new fileOutputStream(outputfile));document.open();Image image = Image.getInstance(updpath);document.add(image);document.close();
我将itext添加为外部jar文件
解决方法:
我找到了上述问题的答案.我刚刚在libs文件夹中添加了jar,它对我有用.
请参见参考文献Android update 17 seems incompatible with external Jars
外部罐子可能有问题,
在你的项目中
>创建一个名为libs的文件夹.
>将所有需要的外部jar文件复制并粘贴到该文件夹中.
以上是内存溢出为你收集整理的android – 将JPG转换为PDF全部内容,希望文章能够帮你解决android – 将JPG转换为PDF所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)