and jpeg wasn't in the list. After reinstalling the above packages jpeg appeared in the list.
回答3:
for me:
brew reinstall imagemagick --with-libtiff
saved the day when dealing with a similar problem, but for tiff files.
UPDATE: one year later and this remains the only way I can get tiff working properly in convert on MacOS X.
回答4:
I faced the same problem recently. After Googling for couple of hours, I found out that reason was a CONFLICT between php extentions Gmagick & Imagick. Commenting gmagick.so in php.ini fixed the problem. Hope this will save someone time :)
sudo tar xvf jpegsrc.v9a.tar.gz -C /usr/local/src/
cd /usr/local/src/jpeg-9a
./configure --enable-shared
make
sudo make install
than turn in ImageMagick
cd ImageMagick-6.9.6-4
./configure
sudo make install
sudo ldconfig /usr/local/lib
回答8:
I have encountered a similar problem with TIFF files on ImageMagick v7.0.4-5 on Windows 7.
If this question concerns a Windows OS, then the cause is that Windows can't find the Jpeg (in my case, TIFF) file library (DLL).
Cause
I had installed ImageMagick without adding it to the Windows $PATH.
Error message
This resulted in error
identify: unable to load module'C:\Program Files\ImageMagick-7.0.4-Q16\modules\coders\IM_MOD_RL_TIFF_.dll':The specified module could not be found.@ error/module.c/OpenModule/1279. identify:no decode delegateforthis image format `TIFF' @ error/constitute.c/ReadImage/509.
Solution
Re-install ImageMagick and do add it to the $PATH, so that it can find libtiff. Restart your command shell as well.
First cd into ImageMagick's install folder before executing it.