当前位置:   article > 正文

Android环境下生成PDF文件_android com.itextpdf.android

android com.itextpdf.android

一、背景

公司需要一个从本地选择图片生成pdf文件并上传的功能,由于Android本身并没有对pdf的支持,这里选择使用一个第三方的库来达成需求。

二、库的选择

2.1 当前主流的库

在众多Java语言编写的PDf库中,对Android有支持且有一定用户量的的有:iText、Qoppa qPDF工具包、PDFJet。

2.2 三个库的对比如下:

-iTextQoppaPDFJet
应用文件大小1.52MB0.93MB0.67MB
时间消耗3.7ms39ms51.3ms
平均CPU利用率29%77.9%86.8%
修改PDF没有
加密没有
形式字段函数没有
文本提取没有
将PDF转换为图像没有没有
开源没有
书可用没有没有
论坛,邮件列表没有没有

2.3 选型

鉴于性能和开源,决定选择iText作为此次接入的PDF库。

三、iText库接入

3.1 资源说明

3.1.1 下载链接

https://github.com/itext/itextpdf/tree/itextg

3.1.2 下载说明

If you want to use iText on Android or the Google App Engine, you need to use iTextG. iTextG is almost identical to iText, except that it only uses classes that are white-listed by Google. All references to java.awt, javax.nio and other “forbidden” packages have been removed.
(在Android上使用iText,需要使用iTextG。iTextG与iText基本相同,只是替换掉了java.awt,javax.nio等Android上不支持的包。)

3.1.3 混淆说明
# itext
-dontwarn com.itextpdf.**
-keep class com.itextpdf.** {*;}
  • 1
  • 2
  • 3

3.2 图片生成pdf方法

3.2.1 设置pdf每页的背景
public class PdfBackground extends PdfPageEventHelper {
    @Override
    public void onEndPage(PdfWriter writer, Document document) {
        //设置pdf背景色为白色
        PdfContentByte canvas = writer.getDirectContentUnder();
        Rectangle rect = document.getPageSize();
        canvas.setColorFill(BaseColor.WHITE);
        canvas.rectangle(rect.getLeft(), rect.getBottom(), rect.getWidth(), rect.getHeight());
        canvas.fill();

        //设置pdf页面内间距
        PdfContentByte canvasBorder = writer.getDirectContent();
        Rectangle rectBorder = document.getPageSize();
        rectBorder.setBorder(Rectangle.BOX);
        rectBorder.setBorderWidth(BORDER_WIDTH);
        rectBorder.setBorderColor(BaseColor.WHITE);
        rectBorder.setUseVariableBorders(true);
        canvasBorder.rectangle(rectBorder);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
3.2.2 根据图片Uri生成pdf
/**
 * 根据图片生成PDF
 *
 * @param pdfPath 生成的PDF文件的路径
 * @param imagePathList 待生成PDF文件的图片集合
 * @throws IOException 可能出现的IO操作异常
 * @throws DocumentException PDF生成异常
 */
private void createPdf(String pdfPath, List<String> imagePathList) throws IOException, DocumentException {
    Document document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(pdfPath));

    //设置pdf背景
    PdfBackground event = new PdfBackground();
    writer.setPageEvent(event);

    document.open();
    for (int i = 0; i < imagePathList.size(); i++) {
        document.newPage();
        Image img = Image.getInstance(imagePathList.get(i));
        //设置图片缩放到A4纸的大小
        img.scaleToFit(PageSize.A4.getWidth() - BORDER_WIDTH * 2, PageSize.A4.getHeight() - BORDER_WIDTH * 2);
        //设置图片的显示位置(居中)
        img.setAbsolutePosition((PageSize.A4.getWidth() - img.getScaledWidth()) / 2, (PageSize.A4.getHeight() - img.getScaledHeight()) / 2);
        document.add(img);
    }
    document.close();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

四、参考文献

4.1 iText官方网站:

http://itextpdf.com/

4.2 iText5图片处理相关examples:

http://developers.itextpdf.com/examples/image-examples-itext5

4.3 Stefan Fenz的博客地址:

http://stefan.fenz.at/creating-pdfs-on-android-an-evaluation/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/319189
推荐阅读
相关标签
  

闽ICP备14008679号