在mac上成功安装后,php imagemagick无效

时间:2017-04-13 07:39:47

标签: php macos imagemagick imagick php-extension

我需要在mac上使imagemagick可用。我的mac版本是macOS Sierra。我做了以下步骤:

  1. brew install ghostscript
  2. brew install imagemagick
  3. brew install php70-imagick因为我使用php7.0
  4. 然后在imagick.so中写下php.ini的位置 extension=/usr/local/Cellar/php70-imagick/3.4.3_2/imagick.so
  5. 然后重新启动apache,即sudo apachectl restart
  6. 然后运行php -r "print(class_exists('Imagick'));"我可以看到它打印1
  7. 现在运行以下代码时,会打印echo 'Imagick is not installed';

    if( class_exists("Imagick") )
    {
        echo 'Imagick is installed';
    }
    else{
        echo 'Imagick is not installed';
    }
    

    我不明白如何在我的imagemagic mac或我做错的地方启用localhost

0 个答案:

没有答案