Search found 2 matches

by aleb
2016-01-23T17:33:36-07:00
Forum: Bugs
Topic: Shifting "-fill x.png"
Replies: 4
Views: 2497

Re: Shifting "-fill x.png"

I tried:
- removing "-fill" and also
- using "-fill red" instead of just "-fill",
but x.png is not created and I don't get an error message. There should be an error printed, at least?

Any idea why circle.png appears shifted in the final x.png? I'll dig some more..
by aleb
2016-01-21T07:33:59-07:00
Forum: Bugs
Topic: Shifting "-fill x.png"
Replies: 4
Views: 2497

Shifting "-fill x.png"

This draws a white disc on a blue background: convert -size 100x100 xc:skyblue -fill white -stroke black -draw "arc 20,20 80,80 0,360" circle.png This uses circle.png as a "fill color" when drawing a new larger circle: convert -size 100x100 xc:none -fill circle.png -draw "circle 50,50 50,10" x.png ...