Re: Magick-users Digest, Vol 82, Issue 14
geo cherchetout <[email protected]>
| Newsgroups | gmane.comp.video.image-magick.user |
|---|---|
| Message-ID | <[email protected]> |
Le 18.11.2009 21:00, *[email protected]* wrote : > > Since upgrading OS X to 10.6.2 I get the following dyld related error: > > SEsMacPro:GB1_issue stu$ convert *.tiff *.jpg > dyld: lazy symbol binding failed: Symbol not found: _AcquireImageInfo > Referenced from: /usr/local/bin/convert > Expected in: /usr/local/lib/libMagick.10.dylib > > dyld: Symbol not found: _AcquireImageInfo > Referenced from: /usr/local/bin/convert > Expected in: /usr/local/lib/libMagick.10.dylib > > ImageMagick 6.5.5 > > Does anyone else have this problem and is there a known fix? > > Thanks for your time Perhaps it is better using: for i in *tiff; do convert $i $i.jpg; done or something like this ? -- gc (linux beginner)