java将多张图片合并转为PDF

所需jar包:com.lowagie.text

package weaver.gy.util;

import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import javax.imageio.ImageIO;

import com.lowagie.text.BadElementException;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Image;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfWriter;

/**
 * 将多张图片合并转为PDF;需要用到iTextpdf包,
 * 
 * @author 浴缸
 * 
 */
public class PrintToPdfUtil {
	/**
	 * 
	 * @param imageFolderPath
	 *            图片文件夹地址
	 * @param pdfPath
	 *            PDF文件保存地址
	 * 
	 */
	public static void toPdf(String imageFolderPath, String pdfPath) {
		try {
			// 图片文件夹地址
			// String imageFolderPath = "D:/Demo/ceshi/";
			// 图片地址
			String imagePath = null;
			// PDF文件保存地址
			// String pdfPath = "D:/Demo/ceshi/hebing.pdf";
			// 输入流
			FileOutputStream fos = new FileOutputStream(pdfPath);
			// 创建文档
			Document doc = new Document(null, 0, 0, 0, 0);
			//doc.open();
			// 写入PDF文档
			PdfWriter.getInstance(doc, fos);
			// 读取图片流
			BufferedImage img = null;
			// 实例化图片
			Image image = null;
			// 获取图片文件夹对象
			File file = new File(imageFolderPath);
			File[] files = file.listFiles();
			// 循环获取图片文件夹内的图片
			for (File file1 : files) {
				if (file1.getName().endsWith(".png")
						|| file1.getName().endsWith(".jpg")
						|| file1.getName().endsWith(".gif")
						|| file1.getName().endsWith(".jpeg")
						|| file1.getName().endsWith(".tif")) {
					// System.out.println(file1.getName());
					imagePath = imageFolderPath + file1.getName();
					System.out.println(file1.getName());
					// 读取图片流
					img = ImageIO.read(new File(imagePath));
					// 根据图片大小设置文档大小
					doc.setPageSize(new Rectangle(img.getWidth(), img
							.getHeight()));
					// 实例化图片
					image = Image.getInstance(imagePath);
					// 添加图片到文档
					doc.open();
					doc.add(image);
				}
			}
			// 关闭文档
			doc.close();
		} catch (IOException e) {
			e.printStackTrace();
		} catch (BadElementException e) {
			e.printStackTrace();
		} catch (DocumentException e) {
			e.printStackTrace();
		}
	}
	public static void main(String[] args) {
		long time1 = System.currentTimeMillis();
		toPdf("D:/Demo/ceshi/", "D:/Demo/pdf/hebing.pdf");
		long time2 = System.currentTimeMillis();
		int time = (int) ((time2 - time1)/1000);
		System.out.println("执行了:"+time+"秒!");
	}

}
  • 5
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 25
    评论
要将多页PDF的base64换为图片base64,可以按照以下步骤进行操作: 1. 将PDF的base64编码字符串换为byte数组。 2. 使用JavaPDFBox库将byte数组换为PDF文档对象。 3. 遍历PDF文档的每一页,将每一页换为BufferedImage对象。 4. 将每一页的BufferedImage对象换为对应的图片base64编码字符串。 5. 将所有图片base64编码字符串拼接成一个字符串返回。 下面是一个示例代码,可以将多页PDF的base64换为图片base64: ``` import org.apache.pdfbox.pdmodel.PDDocument; import org.apache.pdfbox.rendering.PDFRenderer; import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.Base64; public class PdfToImageConverter { public static String convert(String pdfBase64) throws IOException { byte[] pdfBytes = Base64.getDecoder().decode(pdfBase64); PDDocument document = PDDocument.load(pdfBytes); PDFRenderer pdfRenderer = new PDFRenderer(document); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); for (int i = 0; i < document.getNumberOfPages(); i++) { BufferedImage image = pdfRenderer.renderImageWithDPI(i, 300); ImageIO.write(image, "png", outputStream); outputStream.flush(); } byte[] imageBytes = outputStream.toByteArray(); String imageBase64 = Base64.getEncoder().encodeToString(imageBytes); outputStream.close(); document.close(); return imageBase64; } } ``` 相关问题: 1. 如何将单页PDF的base64换为图片base64? 2. 如何将图片base64换为文件并保存到指定路径下? 3. 如何将多图片合并为一PDF文件并换为base64编码字符串?

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 25
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值