---Reply to mail from David A. Desrosiers about Can't determine image size from output 
of ImageMagick 'identify' program

> 
>> Unfortunatly, different versions of identify output their data in
>> different formats. Can you post the output from:
> 
>     What's interesting is that I tried this, and with -V1 and
> imagemagick set as my parser, pointed directly at that single image, the
> image is converted properly. If I use -V2 on the same image, it fails. I'm
> using the latest distiller from cvs, latest viewer, imagemagick 5.4.7,
> python 2.1.3, etc.
> 

    That's a different issue. The problem you are seeing is caused by line
310 and 311 in ImageParser.py which say:

        if self._verbose > 1:
            message(2, "Running: ", command)
instead of:
        if self._verbose > 1:
            message(2, "Running: " + command)

    If verbose is greater than 1 (as in your second try), it trys to call the
message function with 3 parms. It only takes 3 parms and throws up...

---End reply

Christopher R. Hawks
HAWKSoft
-------------------------------------------------------------------------
Now I know someone out there is going to claim, "Well then, UNIX is intuitive,
because you only need to learn 5000 commands, and then everything else follows
from that! Har har har!"
    -- Andy Bates on "intuitive interfaces", slightly defending Macs





Reply via email to