java从一个pdf中取出指定页生成一个新的pdf
2021-05-07 13:31
标签:file tst trace stat int end read import fread str 取出指定页的pdf生成新的pdf,参数说明: java从一个pdf中取出指定页生成一个新的pdf 标签:file tst trace stat int end read import fread str 原文地址:https://www.cnblogs.com/taleche/p/13183521.htmlpublic static void partitionPdfFile(String pdfFile,
String newFile, int from, int end) {
Document document = null;
PdfCopy copy = null;
try {
PdfReader reader = new PdfReader(pdfFile);
int n = reader.getNumberOfPages();
if (end == 0) {
end = n;
}
document = new Document(reader.getPageSize(1));
copy = new PdfCopy(document, new FileOutputStream(newFile));
document.open();
for (int j = from; j
pdfFile为源pdf,
newFile为需要新生成的pdf,
from为需要截取的起始页,
end为需要截取的末页。
文章标题:java从一个pdf中取出指定页生成一个新的pdf
文章链接:http://soscw.com/index.php/essay/83702.html