import com.lowagie.text.*;
import com.lowagie.text.pdf.PdfWriter;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
/**
* 作者:wrj
* 时间:2020/4/24 10:05
*/
public class text2 {
/**
*
* @param imageFolderPath
* 图片文件夹地址
* @param pdfPath
* PDF文件保存地址
*
*/
public static void toPdf(String imageFolderPath, String pdfPath) {
try {
// 图片地址
String imagePath = null;
// 输入流
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("C:图片文件地址", "生成pdf的位置及命名");
long time2 = System.currentTimeMillis();
int time = (int) ((time2 - time1)/1000);
System.out.println("执行了:"+time+"秒!");
}
}
图片转pdf
最新推荐文章于 2024-05-11 10:30:41 发布
本文介绍了一种将图片文件夹中的多种格式图片(.png, .jpg, .gif, .jpeg, .tif)转换为单一PDF文件的方法。通过使用Java的iText库和ImageIO,此过程可以自动调整页面大小以匹配每张图片的尺寸。
1681

被折叠的 条评论
为什么被折叠?



