PIL で楕円を作成する場合、アウトラインを太く/広くすることはできますか? 現在、私はやろうとしていますが、パラメータに幅canvas.ellipse(box, outline=colour, fill=None)
を与えることができるようにしたいと考えています.outline
1 に答える
1
You could use the aggdraw advanced-graphics add-on module to PIL -- with it, the method to draw an ellipse, like others, takes a pen
object which you can make with your favorite width (as well as color and opacity).
于 2009-10-05T02:48:59.513 に答える