-
Notifications
You must be signed in to change notification settings - Fork 85
Convert pdf to png error #48
Description
Am seeing below error when converting pdf to png:
{ pdfFilePath: '/mnt/c/content/upload/test.pdf', pdfFileBaseName: 'test', convertOptions: { '-density': '300' }, convertExtension: 'png', useGM: false, combinedImage: false, outputDirectory: '/mnt/c/content/upload' } Error { message: 'Failed to convert page to image', error: { Error: Command failed: convert -density 300 "/mnt/c/content/upload/test.pdf[0]" "/mnt/c/content/upload/test-0.png" convert: no images defined /mnt/c/content/upload/test-0.png' @ error/convert.c/ConvertImageCommand/3210.
at ChildProcess.exithandler (child_process.js:276:12)
at emitTwo (events.js:126:13)
at ChildProcess.emit (events.js:214:7)
at maybeClose (internal/child_process.js:915:16)
at Socket.stream.socket.on (internal/child_process.js:336:11)
at emitOne (events.js:116:13)
at Socket.emit (events.js:211:7)
at Pipe._handle.close [as _onclose] (net.js:561:12)
killed: false,
code: 1,
signal: null,
cmd: 'convert -density 300 "/mnt/c/content/upload/test.pdf[0]" "/mnt/c/content/upload/test-0.png"' },
stdout: 'Unrecoverable error: typecheck in .bind\nOperand stack:\n --nostringval-- typecheck --nostringval-- currentglobal
.currentglobal\n',
stderr: 'convert: no images defined /mnt/c/content/upload/test-0.png\' @ error/convert.c/ConvertImageCommand/3210.\n' }
Below are the commands that are available after installing imagemagick, ghostscript, poppler-utils (in Linux). Should ImageMagick and Ghostscript be a specific version for this to work?
`umeshg:/mnt/c/content/upload$ convert -version
Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib cairo djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ltdl lzma openexr pangocairo png rsvg tiff wmf x xml zlib
umeshg:/mnt/c/content/upload$ gs -version
GPL Ghostscript 9.25 (2018-09-13)
Copyright (C) 2018 Artifex Software, Inc. All rights reserved.
umeshg:/mnt/c/content/upload$ pdfinfo -v
pdfinfo version 0.41.0
Copyright 2005-2016 The Poppler Developers - http://poppler.freedesktop.org
Copyright 1996-2011 Glyph & Cog, LLC`