imagemagick identify gives "dyld: Library not loaded: /usr/local/lib/libtiff.3.dylib"

ghostscript, imagemagick, osx-mountain-lion

Solution

this fixes it

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

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

Problem

after brew install imagemagick and brew install ghostscript on osx when i run identify 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 ```

Original source