Check ghostscript support in php imagick?

Is it possible to check php imagick extension for ghostscript support?

for example, if it is on / off, the ghostscript version is used, etc.

What options are available for receiving additional ghostscript / pdf data?

The only thing I have found so far is (version of the most imaginary lib):

http://php.net/manual/en/imagick.getversion.php

ps: system calls are not allowed (e.g. exec) from php

+3
source share
1 answer

I know little about imagick, but some things about imagemagick. I believe that after reading this answer related to imagemagick could help you with imagination too :

 convert -list delegate | grep -Ei '(PDF|PS|EPS)'

(convert CLI, imagemagick.)

+4

All Articles