problem with string format %b with multiple files

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

problem with string format %b with multiple files

Post by fmw42 »

IM 6.5.9-1 Q16 Mac OSX Tiger

I have confirmed the issue reported at the end of viewtopic.php?f=3&t=15498


convert rose: logo: netscape: -format "%b" info:
9673
9673
9673

All three images should not have the same size:

convert rose: -format "%b" info:
9673

convert logo: -format "%b" info:
38341

convert netscape: -format "%b" info:
9788
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: problem with string format %b with multiple files

Post by magick »

We can reproduce the problem you posted and have a patch in ImageMagck 6.5.9-2 Beta available sometime tomorrow. Thanks.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: problem with string format %b with multiple files

Post by fmw42 »

magick wrote:We can reproduce the problem you posted and have a patch in ImageMagck 6.5.9-2 Beta available sometime tomorrow. Thanks.

Seems to be fixed in 6.5.9-2 Q16 Mac OSX Tiger:

convert rose: logo: netscape: -format "%b" info:
9673
38341
9788

also in identify

identify -format "%b\n" rose: logo: netscape:
9673
38341
9788
Post Reply