For example, in version 6.9.6-2 Q16 this command used to generate a single 1 pixel wide line, 8 pixels long :
Code: Select all
convert -size 10x10 canvas:white -stroke black -strokewidth 1 -fill blue -draw "rectangle 1,1 1,8" oneline.bmp
If I change the endpoint for a single pixel wider, it generates a line that is 2 pixels wide and 8 pixels long, as expected:
Code: Select all
convert -size 10x10 canvas:white -stroke black -strokewidth 1 -fill blue -draw "rectangle 1,1 2,8" oneline.bmp
Can you confirm if this is intentional or a bug?