gpt4 book ai didi

python - pyx 模块 : how to make color transparent

转载 作者:太空宇宙 更新时间:2023-11-03 15:55:14 25 4
gpt4 key购买 nike

我尝试(但失败了!)得到 pyx在矩形上绘制透明圆圈。

有一个关于 transparency 的条目在手册中,但我无法弄清楚如何使用它。 matplotlib 会为此使用 alpha - 但我在 pyx 文档中找不到这样的条目。

在我的示例中,我尝试在实心矩形上绘制一个蓝色 - 透明 - 圆环。这里有人知道怎么做吗?

from pyx import canvas, path, color
from pathlib import Path

HERE = Path(__file__).parent

out_path = HERE / 'pyx_test'

c = canvas.canvas()
c.fill(path.rect(-5, -5, 10, 10), [color.rgb.red])
# color.transparency(value) ...?
c.fill(path.circle(0, 0, 6), [color.rgb.blue])
c.writePDFfile(str(out_path))
print('wrote "{}"'.format(out_path))

最佳答案

颜色透明度应与填充方法一起传递。

你可以试试这个:

from pyx import canvas, path, color
from pathlib import Path

HERE = Path(__file__).parent

out_path = HERE / 'pyx_test'

c = canvas.canvas()
c.fill(path.rect(-5, -5, 10, 10), [color.rgb.red])
c.fill(path.circle(0, 0, 6), [color.rgb.blue,color.transparency(0.75)])
c.writePDFfile(str(out_path))
print('wrote "{}"'.format(out_path))

关于python - pyx 模块 : how to make color transparent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43757684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com