Problem with "gradient:[WxH]" - IM7.0.8-11
Posted: 2018-08-31T21:59:57-07:00
Using ImageMagick 7.0.8-11 Q16 x64 HDRI on Windows 10...
I'm getting unexpected results creating gradients using square brackets to specify the canvas size like this...
It generates an all white image, no gradient. These commands also show the problem...
They generate squares of solid red, yellow, or orange. Again, no gradients.
It will still produce a proper gradient by specifying the canvas size using "-size" like this...
I'm getting unexpected results creating gradients using square brackets to specify the canvas size like this...
Code: Select all
magick gradient:[200x200] test.png
Code: Select all
magick gradient:red-green[200x200] redgreen.png
magick gradient:yellow-purple[200x200] yellowpurple.png
magick gradient:orange-lime[200x200] orangelime.png
It will still produce a proper gradient by specifying the canvas size using "-size" like this...
Code: Select all
magick -size 200x200 gradient: test.png