我正在制作一个可以修改PDF文件的网站,我试图能够旋转一个页面或多个页面,但在他们的文档中找不到如何做到这一点。
const pdfDoc = await loadSingleFile(inputFiles[0]) // An input pdf file
const rotatedPdf = await PDFDocument.create(); // Intitialize the rotated pdf file
const pageToRotate = pdfDoc.getPages()[pageIndex]
// Not sure what to write here
const pdfDataString = await rotatedPdf.saveAsBase64({ dataUri: true }); // here generate string for further use
1条答案
按热度按时间x8goxv8g1#
我能够解决这个问题后,我的问题,建议使用这两个功能的评论
https://pdf-lib.js.org/docs/api/classes/pdfpage#getrotation 获取当前页面旋转度。
https://pdf-lib.js.org/docs/api/classes/pdfpage#setrotation 来旋转页面。