montage.exe: unrecognized option `-scale'

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
jondo
Posts: 3
Joined: 2015-02-26T02:07:42-07:00
Authentication code: 6789

montage.exe: unrecognized option `-scale'

Post by jondo »

Hi!

I want to do

Code: Select all

convert -size 8x8 pattern:CrossHatch30 c.png
montage -tile 2x1 -scale 1000% c.png c.png cs_scaled.png
,

but (with ImageMagick-6.8.9-7-Q16-x64-dll.exe) this gives me:

Code: Select all

montage.exe: unrecognized option `-scale' @ error/montage.c/MontageImageCommand/1553.
:(

My workaround is to use

Code: Select all

montage -tile 2x1 -filter Box -resize 1000% c.png c.png cs_scaled.png
instead.

Regards,
Robert
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: montage.exe: unrecognized option `-scale'

Post by Bonzo »

It is not a bug as it looks like -scale is not supported by montage: http://www.imagemagick.org/script/montage.php
jondo
Posts: 3
Joined: 2015-02-26T02:07:42-07:00
Authentication code: 6789

Re: montage.exe: unrecognized option `-scale'

Post by jondo »

Then see this as a feature request :)
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: montage.exe: unrecognized option `-scale'

Post by magick »

Already added to ImageMagick 6.9.0-8 Beta,, available by sometime tomorrow.
jondo
Posts: 3
Joined: 2015-02-26T02:07:42-07:00
Authentication code: 6789

Re: montage.exe: unrecognized option `-scale'

Post by jondo »

That seems like magick! :D
Post Reply