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?".
I am having a problem with Magick++. I tried to create an Image object using a jpg file with extended acii characters in the name. The Image object is created successfully as there are no exceptions thrown. If I try to write the jpg out to a new file using the Image's write method the following exception is thrown "Empty JPEG image (DNL not supported) `C:\A.jpg' @ jpeg.c/EmitMessage/232". I attempted the same test with a copy of the jpg file in question and removed the extended acii characters and did not have any problems creating a new Image object or creating a new jpg file with the Image's write method.
Is there any easy way arround this with out having to purify file names? I know I can read all the binary data out of the file and load it inot a blob and then create the Image object using the blob but I would really like to try and avoid that.