简体   繁体   English

找不到 gm/convert 二进制文件 Node.js pdf 到图像的转换

[英]gm/convert binaries can't be found Node.js pdf-to-image conversion

I am using https://www.npmjs.com/package/pdf2pic to convert my PDF to image.我正在使用https://www.npmjs.com/package/pdf2pic将我的 PDF 转换为图像。

const PDF2Pic = require('pdf2pic');

const pdf2pic = new PDF2Pic({
  density: 100, // output pixels per inch
  savename: 'untitled', // output file name
  savedir: './images', // output file location
  format: 'png', // output file format
  size: '600x600', // output size in pixels
});

const file = "/Users/kar1/Downloads/bw.pdf"
async function recognizeFile(file) {
  pdf2pic.convertBulk(file, -1).then((resolve) => {
    console.log('image converter successfully!');

    return resolve;
  });
}

recognizeFile(file)

The error:错误:

(node:32605) UnhandledPromiseRejectionWarning: Error: Could not execute GraphicsMagick/ImageMagick: gm "identify" "-ping" "-format" "%p" "/Users/kar1/Downloads/bw.pdf" this most likely means the gm/convert binaries can't be found
    at ChildProcess.<anonymous> (/Users/kar1/Desktop/github/pdfToPic/node_modules/gm/lib/command.js:232:12)
    at ChildProcess.emit (events.js:315:20)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:273:12)
    at onErrorNT (internal/child_process.js:469:16)
    at processTicksAndRejections (internal/process/task_queues.js:84:21)

I tried:我试过了:

brew install imagemagick

And the issue still persists.而且问题仍然存在。 How can I solve this?我该如何解决这个问题?

Problem got solved by running these commands:通过运行以下命令解决了问题:

brew install imagemagick
brew install gs

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM