Can you explain me why this command:
Code: Select all
convert -size 250x250 xc:white -draw "point 20,15 point 150,25 point 200,140 point 15,125" -bordercolor black -border 7 -trim -format "%P%O" -write info: output.gif
264x264+7+7
Why the image (canvas) is 264x264 and not 250x250? This is confusing.
I would expect number like 250x250+25+15
250x250 is dimension of canvas. 25 because the first vertical line of cut is 25 pixels from the left edge of the canvas. 15 because the first horizontal line of cut is 15 pixels from the top edge of the canvas. So why this incorrect number: 264x264+7+7
This is example how it should look in PS:
I know about that link, I watched it to create the dots. I need only single dots for this.