ESP Ghostscript 815.02: Unrecoverable Error, Exit Code 255

ESP Ghostscript 815.02: Unrecoverable error, exit code 255

I got this issue today whilst running CentOS 5.4 x64 post investigation of images not being scaled when processing a specific PDF, the solution unfortunately is to build ghostscript and imagemagick from the latest sources.

wget https://ghostscript.com/releases/ghostscript-8.71.tar.gz
wget https://image_magick.veidrodis.com/image_magick/ImageMagick-6.6.3-0.tar.gz

Unpack, configure, make && make install

To fix compatibility with pear imagick

ln -s /usr/local/lib/libMagickCore.so /usr/lib64/libMagick.so.10
ln -s /usr/local/lib/libMagickWand.so /usr/lib64/libWand.so.10
ln -s /usr/local/bin/gs /usr/bin/gs

Comments