Stirling-PDF/shared-operations/functions/splitPDF.ts

29 lines
952 B
TypeScript
Raw Normal View History

2023-10-26 20:53:02 +02:00
2023-10-26 22:41:48 +02:00
import { PDFDocument } from 'pdf-lib';
2023-10-26 20:53:02 +02:00
import { selectPages } from "./subDocumentFunctions";
import { PdfFile } from '../wrappers/PdfFile';
export async function splitPDF(file: PdfFile, splitAfterPageArray: number[]): Promise<PdfFile[]> {
const byteFile = await file.convertToPdfLibFile();
if (!byteFile?.pdfLib) return [];
2023-10-17 03:40:54 +02:00
const numberOfPages = byteFile.pdfLib.getPages().length;
2023-10-17 03:40:54 +02:00
let pagesArray: number[] = [];
2023-10-17 03:40:54 +02:00
let splitAfter = splitAfterPageArray.shift();
const subDocuments: PdfFile[] = [];
2023-10-17 03:40:54 +02:00
for (let i = 0; i < numberOfPages; i++) {
if(splitAfter && i > splitAfter && pagesArray.length > 0) {
subDocuments.push(await selectPages(byteFile, pagesArray));
2023-10-17 03:40:54 +02:00
splitAfter = splitAfterPageArray.shift();
pagesArray = [];
}
pagesArray.push(i);
2023-10-17 03:40:54 +02:00
}
subDocuments.push(await selectPages(byteFile, pagesArray));
2023-10-17 03:40:54 +02:00
pagesArray = [];
return subDocuments;
};