Bug IM 7.0.3.7 Q16 Mac OSX -respect-parentheses

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

Bug IM 7.0.3.7 Q16 Mac OSX -respect-parentheses

Post by fmw42 »

In IM 6.9.6.5 Q16, both -respect-parenthesis and -respect-parentheses work fine. But in IM 7.0.3.7, the latter, -respect-parentheses, is not recognized.

E.G.

This works:

Code: Select all

magick -respect-parenthesis \
\( -size 50x50 xc:white \) \
\( -size 50x50 xc:black \) \
+append \
result.gif
This fails:

Code: Select all

magick -respect-parentheses \
\( -size 50x50 xc:white \) \
\( -size 50x50 xc:black \) \
+append \
result.gif
magick: unrecognized option `-respect-parentheses' at CLI arg 1 @ fatal/magick-cli.c/ProcessCommandOptions/425.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Bug IM 7.0.3.7 Q16 Mac OSX -respect-parentheses

Post by magick »

Thanks for the problem report. We can reproduce it and will have a patch to fix it in GIT master branch @ https://github.com/ImageMagick/ImageMagick later today. The patch will be available in the beta releases of ImageMagick @ http://www.imagemagick.org/download/beta/ by sometime tomorrow.
Post Reply