0

我正在尝试创建一个应用程序,允许用户上传 PDF,然后将上传文件的第一页转换为图像。我正在使用https://github.com/mooz/node-pdf-image。我遇到了麻烦,因为我不知道该工具的路径。我没有用户计算机上可用的 PDF 的完整路径,因此我尝试将文件上传到 S3,然后使用该路径。

uploadFile(file, 'temps')
  .then(uploaded => {
    const pdfFile = new PDFImage(uploaded.secure_url);
    return pdfFile.convertPage(0);
  })
  .then(imagePath => console.log(imagePath))
  .catch(error => console.log(error));

上面会抛出 fs.stat 不是函数的错误。您如何使用此插件并允许用户将文件上传到应用程序?

4

0 回答 0