Started working on splitOn empty/qr-/barcode

This commit is contained in:
Felix Kaspar
2023-10-26 19:56:23 +02:00
parent f78a64d545
commit 4e8d8e3d53
6 changed files with 135 additions and 85 deletions

View File

@@ -0,0 +1,16 @@
export async function createSubDocument(pdfDoc, pagesToExtractArray, PDFLib) {
const subDocument = await PDFLib.PDFDocument.create();
// Check that array max number is not larger pdf pages number
if(Math.max(...pagesToExtractArray) >= pdfDoc.getPageCount()) {
throw new Error(`The PDF document only has ${pdfDoc.getPageCount()} pages and you tried to extract page ${Math.max(...pagesToExtractArray)}`);
}
const copiedPages = await subDocument.copyPages(pdfDoc, pagesToExtractArray);
for (let i = 0; i < copiedPages.length; i++) {
subDocument.addPage(copiedPages[i]);
}
return subDocument.save();
}