montage.exe: unrecognized option `-scale'
Posted: 2015-02-26T02:14:37-07:00
Hi!
I want to do,
but (with ImageMagick-6.8.9-7-Q16-x64-dll.exe) this gives me:
My workaround is to use instead.
Regards,
Robert
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
Regards,
Robert