I am looking for a method to "widen" a transparent area. For example, given this picture:
Code: Select all
convert -size 300x300 xc:none -fill none \
-stroke blue -strokewidth 10 -draw "roundrectangle 10,10 50,50 5,5" \
-stroke red -strokewidth 20 -draw "roundrectangle 110,110 150,150 5,5" \
-stroke green -strokewidth 15 -draw "roundrectangle 210,210 250,250 5,5" \
t.png
Any hints how to achieve that?