How would I draw a circle on a white bg?
Posted: 2008-03-13T08:34:42-07:00
I need to draw a circle on a white bg. It needs to be 2 1/2 inches in diameter.
Thanks
Thanks
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=10828
Code: Select all
convert -size 200x200 xc:white -stroke black -strokewidth 1 -fill none -draw "circle 100,100 100,0 " circle.png
Code: Select all
convert -density 300x300 -size 900x900 xc:white -stroke black -strokewidth 1 -fill none -draw "circle 450,450 825,450 " circle_dpi.png