I recently installed and configured image.module. After installation, I viewed the image module administration page. It indicated the module was configureed correctly. However, I was unable to create a thumbnail image. As per suggestions in this forum for troubleshooting the image module, I attempted and was able to create a image thumbnail by executing convert.exe from the command line.

After much forum reading, web surfing, breakpointing code, and hair-pulling, I found that the path to imagemagick convert was not **really** correct on the image module configuration page.

I had originally used the absolute path to convert.exe as something like: c:\Program Files\imagemagick\convert.exe. The php "exec" would like the more "DOS-friendly" path, as in: c:\PROGRA~1\imagemagick\convert.exe. Once I made this change, the image module was able to successfully produce a thumbnail iamge.

Hope this helps someone!