Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
convert -debug all Lebergimp.tif -define tiff:tile-geometry=256x256 'ptif:Leber_pyramid.tif'
and get an exception:
2009-05-22T11:14:49+02:00 0:05 2.906u 6.5.2 Exception convert[1328]: module.c/Ge
tMagickModulePath/667/Exception
unable to open module file `C:\Programme\ImageMagick-6.5.2-Q16\modules\coders\
IM_MOD_RL_TIF'_.dll': No such file or directory
I know this is old, but I was getting the same error so for completeness I thought I'd post an answer. The single quotes in the middle of the dll's filename in the error message looked odd so I guessed it was another of those Windows/DOS quirks. Removing the quotes from the output declaration works. ie. in this example:
ozbigben wrote:I know this is old, but I was getting the same error so for completeness I thought I'd post an answer. The single quotes in the middle of the dll's filename in the error message looked odd so I guessed it was another of those Windows/DOS quirks. Removing the quotes from the output declaration works. ie. in this example:
fmw42 wrote:I am no expert on windows, but I think windows needs to have double quotes rather than single quotes when needed
It doesn't seem to need quotes at all in this instance. I'm converting images for use with IIP Image server (http://iipimage.sourceforge.net/documentation/images/) and am using the following successfully for drag and drop conversion.