Homebrew + Imagemagick + php54-imagick non funziona

1

In base a questo post qui , sto riscontrando un problema di versione con Imagemagick.

  • php54-imagick version = > 3.4.3_2
  • imagemagick = > 7.0.5-3

Comprendo che devo eseguire il downgrade del mio imagemagick su 6.9. *

Il mio problema:

brew install php54-imagick

Automatically installs the required imagemagick 7.0.5-3 package

-

I uninstall imagemagick 7.0.5-3

brew uninstall --ignore-dependencies imagemagick

-

I install imagemagick 6.9.* (6.9.8-1 to be specific)

brew install imagemagick@6

L'errore:

macos1:~ $ php -i | grep imagick

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/opt/php54-imagick/imagick.so' - dlopen(/usr/local/opt/php54-imagick/imagick.so, 9): Library not loaded: /usr/local/opt/imagemagick/lib/libMagickWand-7.Q16HDRI.0.dylib
  Referenced from: /usr/local/opt/php54-imagick/imagick.so
  Reason: image not found in Unknown on line 0
Warning: PHP Startup: Unable to load dynamic library '/usr/local/opt/php54-imagick/imagick.so' - dlopen(/usr/local/opt/php54-imagick/imagick.so, 9): Library not loaded: /usr/local/opt/imagemagick/lib/libMagickWand-7.Q16HDRI.0.dylib
  Referenced from: /usr/local/opt/php54-imagick/imagick.so
PHP Warning:  Unknown: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in Unknown on line 0
Additional .ini files parsed => /usr/local/etc/php/5.4/conf.d/ext-imagick.ini

La domanda:

Come userò php54-imagick versione 3.4. * con imagemagick 6.9. *?

    
posta Jeffrey Wen 23.03.2017 - 14:53
fonte

2 risposte

0

Ho risolto il mio problema! Dato che stavo usando il metodo readImage dalla classe ImageMagick, è necessario che ghostscript fosse installato insieme a ImageMagick.

Tuttavia, quando brew install imagemagick , ghostscript è una dipendenza opzionale che non è installata per impostazione predefinita.

Per risolvere il mio problema, ecco cosa ho fatto (tutti i passaggi):

  1. brew install php54-imagick
  2. brew install imagemagick --with-ghostscript

Ora posso leggereImage ('test.pdf')!

    
risposta data 24.03.2017 - 15:27
fonte
0

Ho avuto lo stesso problema ma durante l'aggiornamento da PHP 7.0 a PHP 7.1. L'errore è scomparso dopo aver reinstallato l'estensione imagick dalla sorgente:

brew reinstall -s php71-imagick

Credo che possa funzionare per altre versioni di PHP. Sostituisci semplicemente php71 dal comando precedente dalla tua versione. Ad esempio: php56 o php70 .

    
risposta data 02.08.2017 - 12:55
fonte

Leggi altre domande sui tag