>var pdfImage = new PDFImage("./pdfs/pdf2.pdf");
pdfImage.convertPage(0).then(function (imagePath) {
// 0-th page (first page) of the slide.pdf is available as slide-0.png
fs.existsSync("/pdfs/pdf2-0.png") // => true
}).catch(err => {
console.log(err);
});
Я добавил эту «ловушку» для отображения ошибки.
{ message: 'Failed to convert page to image',
error:
{ Error: Command failed: convert "./pdfs/pdf2.pdf[0]" "pdfs\pdf2-0.png"
Par�metro Inv�lido - /pdfs
at ChildProcess.exithandler (child_process.js:294:12)
at ChildProcess.emit (events.js:198:13)
at maybeClose (internal/child_process.js:982:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:259:5)
killed: false,
code: 4,
signal: null,
cmd: 'convert "./pdfs/pdf2.pdf[0]" "pdfs\\pdf2-0.png"' },
stdout: '',
stderr: 'Par�metro Inv�lido - /pdfs\r\n' }
это ошибка, которая возвращается, я не мог понять, в чем проблема.