Salve,
mi servirebbe GhostScript
http://stackoverflow.com/questions/8...sion-using-php
http://ghostscript.com/download/gsdnld.htmlImageMagick uses GhostScript to process JPEGs, so you'd do better to exec GhostScript directly, which would be much more efficient and give you more control. It would also be only 1 exec statement, instead of playing around with the IMagick functions.
E' possibile installare GhostScript su sito Altervista (Linux)? E' eseguibile tipoNOTE: The Linux binaries are for testing/evaluation purposes only, they do not come as installers or installable packages.
exec("'gs' '-dNOPAUSE' '-sDEVICE=jpeg' '-dUseCIEColor' '-dTextAlphaBits=4' '-dGraphicsAlphaBits=4' '-o$exportPath' '-r$res' '-dJPEGQ=$quality' '$pdf'",$output);
Grazie