我使用curve_to绘制pycairo,这是代码:
ctx.move_to(0.4,0.8)
ctx.curve_to(0.3,0.4 ,0.4,0.4 ,0.4,0.4)
ctx.set_source_rgb(0,0,0)
ctx.set_line_width(0.001)
ctx.fill()
ctx.move_to(0.4,0.8)
ctx.line_to(0.5,0.8)
ctx.set_source_rgb(0,0,0)
ctx.set_line_width(0.001)
ctx.stroke()
ctx.move_to(0.5,0.8)
ctx.curve_to(0.6,0.4 ,0.5,0.4 ,0.5,0.4)
ctx.set_source_rgb(0,0,0)
ctx.set_line_width(0.001)
ctx.fill()
ctx.move_to(0.4,0.4)
ctx.line_to(0.5,0.4)
ctx.set_source_rgb(0,0,0)
ctx.set_line_width(0.001)
ctx.stroke()
我想要填充对象,但正如你所见,我无法填写所有内容,因为它们是分开的而且尚未合并。所以我认为最接近的方法是合并它们。
关于什么:
ctx.set_source_rgb(0,0,0)
ctx.set_line_width(0.001)
ctx.move_to(0.5,0.8)
ctx.line_to(0.4,0.8)
ctx.curve_to(0.3,0.4 ,0.4,0.4 ,0.4,0.4)
ctx.move_to(0.4,0.4)
ctx.line_to(0.5,0.8)
ctx.curve_to(0.6,0.4 ,0.5,0.4 ,0.5,0.4)
ctx.fill()
我测试了它,它形成了一个填充区域。我不确定它是对的。