reactjs 用pdf-lib和javascript旋转页面

hlswsv35  于 2023-06-05  发布在  React
关注(0)|答案(1)|浏览(222)

我正在制作一个可以修改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
x8goxv8g

x8goxv8g1#

我能够解决这个问题后,我的问题,建议使用这两个功能的评论
https://pdf-lib.js.org/docs/api/classes/pdfpage#getrotation 获取当前页面旋转度。
https://pdf-lib.js.org/docs/api/classes/pdfpage#setrotation 来旋转页面。

相关问题