PyCairo – 填充纯色
在本文中,我们将学习如何在Python中使用 PyCairo 以封闭模式填充颜色。 Pycairo 是一个Python模块,为 cairo 图形库提供绑定。这个库用于在Python中创建 SVG 即矢量文件。打开 SVG 文件进行查看(只读)的最简单快捷的方法是使用现代 Web 浏览器,如 Chrome、Firefox、Edge 或 Internet Explorer——几乎所有这些浏览器都应该为 SVG 格式提供某种渲染支持。
这里我们将使用fill()方法。
颜色是表示红色、绿色和蓝色 (RGB) 强度值组合的对象。 PyCairo 的有效 RGB 值在 0 到 1 的范围内。
实施步骤:
- 导入 PyCairo 模块。
- 创建一个 SVG 表面对象并向其添加上下文。
- 设置上下文的颜色和线宽
- 创建矩形
- 源用于通过调用 fill ( ) 方法来填充矩形的内部。
例子 :
Python
# importing pycairo
import cairo
# creating a SVG surface
# here geek95 is file name & 700, 700 is dimension
with cairo.SVGSurface("geek95.svg", 700, 700) as surface:
# creating a cairo context object for SVG surface
# useing Context method
context = cairo.Context(surface)
# setting color of the context
context.set_source_rgb(0.2, 0.23, 0.9)
# creating a rectangle
context.rectangle(10, 15, 90, 60)
# Fill the color inside the rectangle
context.fill()
# setting color of the context
context.set_source_rgb(0.9, 0.1, 0.1)
# creating a rectangle
context.rectangle(130, 15, 90, 60)
# Fill the color inside the rectangle
context.fill()
# setting color of the context
context.set_source_rgb(0.4, 0.9, 0.4)
# creating a rectangle
context.rectangle(250, 15, 90, 60)
# Fill the color inside the rectangle
context.fill()
# printing message when file is saved
print("File Saved")
输出 :
注意: set_source_rgb ( ) 方法将源设置为不透明颜色。参数是红色、绿色、蓝色强度值。