Imagemagick ident gives "dyld: library not loaded: /usr/local/lib/libtiff.3.dylib"

after brew install imagemagick and brew install ghostscript on osx when i run the id i get:

$ 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 
+7
source share
3 answers

it fixes it

 ln -s /usr/local/Cellar/libtiff/3.9.5/lib/libtiff.3.dylib /usr/local/lib/libtiff.3.dylib 

thanks rlaraujo for this link https://github.com/mxcl/homebrew/issues/12099

+18
source

I ran into the same issue recently on 10.6.8. I had ImageMagick installed (on the back) and then freetype and ghostscript installed and started to get a crash. The fix for me was just updating ImageMagick, which was rebuilding and linking to newer libtiff and other libraries.

 brew upgrade imagemagick 
0
source

I had a similar problem with the libpng when I tried to use the convert command with png files.

At first I tried updating imagemagick, but for the current version of brew, I had no updates. Updating brew and then updating ImageMagick solved the problem.

 brew update brew upgrade imagemagick 
0
source

All Articles