1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > android pdf转jpg格式 在Android中将图片转换为PDF

android pdf转jpg格式 在Android中将图片转换为PDF

时间:2020-08-02 01:37:20

相关推荐

android pdf转jpg格式 在Android中将图片转换为PDF

我想你正在使用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();

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。