如何在Android java中将jpg转换为pdf

时间:2013-04-01 13:32:20

标签: java android pdf pdf-generation

我想将几个.jpg文件(使用设备相机拍摄)转换为ONE .pdf文件。 我看到很多工具,如iText,mupdf,PDFjet,pdjBox。

有更简单的东西吗? (就像为Android准备的API?)

感谢。

1 个答案:

答案 0 :(得分:5)

使用iText Library将文本转换为pdf。使用它将图像转换为pdf。

import java.io.*;
import com.lowagie.text.*;
import com.lowagie.text.pdf.*;
public class imagesPDF
{     
    public static void main(String arg[])throws Exception
    {                  
        Document document=new Document();
        PdfWriter.getInstance(document,new FileOutputStream("YourPDFHere.pdf"));
        document.open();
        Image image = Image.getInstance ("yourImageHere.jpg");
        document.add(new Paragraph("Your Heading for the Image Goes Here"));
        document.add(image);               
        document.close();
   }
}