Your message dated Wed, 16 Apr 2008 19:42:26 -0300
with message-id <[EMAIL PROTECTED]>
and subject line Closing 399060
has caused the Debian Bug report #399060,
regarding imagemagick: "convert -draw" fails when filenames start with a digit
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
399060: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399060
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: imagemagick
Version: 6:6.0.6.2-2.7
Severity: normal
The parsing of "convert -draw" commands is a bit broken. One example is
bug #344801. But the bug affects "convert -draw" much more generally.
For example, let's make a nice circle:
$ touch 1.gif
$ convert -size 200x200 -fill blue -draw 'circle 50,50 0,50' 1.gif 1.gif
Now, we want two circles:
$ convert -draw 'image Over 100,100 200,200 1.gif' 1.gif 2.gif
convert: Non-conforming drawing primitive definition `image'.
This is a bug! There is a workaround: try a different filename.
$ cp 1.gif a.gif
$ convert -draw 'image Over 100,100 200,200 a.gif' a.gif 2.gif
-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27-3-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Versions of packages imagemagick depends on:
ii libmagick6 6:6.0.6.2-2.7 Image manipulation library
-- no debconf information
--- End Message ---
--- Begin Message ---
Hi!
>From http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=10894
Instead using
convert -draw 'image Over 100,100 200,200 1.gif' 1.gif 2.gif
use
convert -draw 'image Over 100,100 200,200 "1.gif"' 1.gif 2.gif
If you have any problems or disagree, please, contact us. Thank you!
Best regards,
Nelson
--- End Message ---