I need help to convert a PDF file to TIFF file, I do this with PHP and ImageMagick from Linux, like this
exec('convert -density 110 * -compress LZW out.tiff');
But this sometimes fail, so I need to know the best way to convert a PDF to a TIFF, without lost quality, or if someone knows a better way to do this.
Thanks.