mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
31 lines
653 B
JavaScript
31 lines
653 B
JavaScript
const { PDFDocument, ParseSpeeds } = PDFLib;
|
|
|
|
export const scalePage = async (snapshot, page_size) => {
|
|
// Load the original PDF file
|
|
const pdfDoc = await PDFDocument.load(snapshot, {
|
|
parseSpeed: ParseSpeeds.Fastest,
|
|
});
|
|
|
|
const new_size = page_size;
|
|
|
|
const pages = pdfDoc.getPages();
|
|
|
|
pages.forEach(page => {
|
|
// Change page size
|
|
page.setSize(new_size.width, new_size.height);
|
|
});
|
|
|
|
// Serialize the modified document
|
|
return pdfDoc.save();
|
|
};
|
|
|
|
export const PageSize = {
|
|
a4: {
|
|
width: 594.96,
|
|
height: 841.92
|
|
},
|
|
letter: {
|
|
width: 612,
|
|
height: 792
|
|
}
|
|
}; |