mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
18 lines
466 B
JavaScript
18 lines
466 B
JavaScript
|
const { PDFDocument, ParseSpeeds, degrees } = PDFLib;
|
||
|
|
||
|
export const rotatePages = async (snapshot, rotation) => {
|
||
|
// Load the original PDF file
|
||
|
const pdfDoc = await PDFDocument.load(snapshot, {
|
||
|
parseSpeed: ParseSpeeds.Fastest,
|
||
|
});
|
||
|
|
||
|
const pages = pdfDoc.getPages();
|
||
|
|
||
|
pages.forEach(page => {
|
||
|
// Change page size
|
||
|
page.setRotation(degrees(rotation))
|
||
|
});
|
||
|
|
||
|
// Serialize the modified document
|
||
|
return pdfDoc.save();
|
||
|
};
|