检查php imagick中的ghostscript支持?
作者:互联网
是否可以检查php imagick扩展对ghostscript的支持?
例如,如果打开/关闭它,使用的ghostscript版本等.
有哪些可能获得其他ghostscript / pdf详细信息?
到目前为止,我发现的唯一东西是(imagick lib本身的版本):
http://php.net/manual/en/imagick.getversion.php
ps:不允许在php中进行系统调用(例如exec)
解决方法:
我对imagick知之甚少,但对imagemagick知之甚少.我的猜测是,通过阅读this answer related to imagemagick也可以帮助imagick:
convert -list delegate | grep -Ei '(PDF|PS|EPS)'
(convert是imagemagick的一部分CLI实用程序.)
标签:imagick,pdf,ghostscript,php 来源: https://codeday.me/bug/20191101/1983356.html