brew install imagemagick と brew install ghostscript を osx に実行した後、identify を実行すると、次のようになります。
$ identify
dyld: Library not loaded: /usr/local/lib/libtiff.3.dylib
Referenced from: /usr/local/bin/identify
Reason: image not found
Trace/BPT trap: 5
brew install imagemagick と brew install ghostscript を osx に実行した後、identify を実行すると、次のようになります。
$ identify
dyld: Library not loaded: /usr/local/lib/libtiff.3.dylib
Referenced from: /usr/local/bin/identify
Reason: image not found
Trace/BPT trap: 5
これはそれを修正します
ln -s /usr/local/Cellar/libtiff/3.9.5/lib/libtiff.3.dylib /usr/local/lib/libtiff.3.dylib
このリンクの rlaraujo に感謝します https://github.com/mxcl/homebrew/issues/12099
最近、10.6.8 で同じ問題に遭遇しました。ImageMagick を (昔から) インストールfreetype
してからインストールしghostscript
、失敗し始めました。私にとっての修正は、ImageMagick をアップグレードすることでした。これにより、再構築され、新しいlibtiff
ライブラリや他のライブラリにリンクされました。
brew upgrade imagemagick
pngファイルでコマンドlibpng
を使用しようとしたときに、ライブラリで同様の問題に遭遇しました。convert
最初に imagemagick をアップグレードしようとしましたが、現在のバージョンの brew で利用できるアップグレードはありませんでした。brew を更新してから ImageMagick をアップグレードすると、問題が解決しました。
brew update
brew upgrade imagemagick