我在本地计算机上使用MAMP PRO,并在MAMP PRO提供的PHP配置文件中启用了imagick扩展。我可以看到Imagick列在phpinfo()下面。我正在尝试从Illustrator文件(.ai)创建缩略图,但是当我尝试使用此代码时...
$temp_file2 = '/path/to/vector.ai';
$image = new Imagick($temp_file2);
我收到此错误...
FailedToExecuteCommand `"/Applications/MAMP/Library/bin/gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72" "-sOutputFile=/var/tmp/magick-2814rSVJPY2macFe%d" "-f/var/tmp/magick-2814Z5tbjlN3yNHL" "-f/var/tmp/magick-2814fken20MxIbeq"' (-1) @ error/utility.c/SystemCommand/2051
所以它不能执行Ghostscript可执行文件?一旦我启用了Imagick,我认为MAMP PRO会自己解决这个问题吗?