我需要在mac上使imagemagick
可用。我的mac版本是macOS Sierra
。我做了以下步骤:
brew install ghostscript
brew install imagemagick
brew install php70-imagick
因为我使用php7.0 imagick.so
中写下php.ini
的位置
extension=/usr/local/Cellar/php70-imagick/3.4.3_2/imagick.so
sudo apachectl restart
php -r "print(class_exists('Imagick'));"
我可以看到它打印1
。现在运行以下代码时,会打印echo 'Imagick is not installed';
if( class_exists("Imagick") )
{
echo 'Imagick is installed';
}
else{
echo 'Imagick is not installed';
}
我不明白如何在我的imagemagic
mac或我做错的地方启用localhost
。