如何与pycairo合并路径?

问题描述 投票:1回答:1

我使用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()

enter image description here

我想要填充对象,但正如你所见,我无法填写所有内容,因为它们是分开的而且尚未合并。所以我认为最接近的方法是合并它们。

python cairo pycairo
1个回答
1
投票

关于什么:

    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()

我测试了它,它形成了一个填充区域。我不确定它是对的。

© www.soinside.com 2019 - 2024. All rights reserved.