PyCairo – 我们如何复制路径?
在本文中,我们将学习如何在Python中使用 PyCairo 复制对象的路径。创建当前路径的副本并将其作为路径返回给用户。
PyCairo :Pycairo 是一个Python模块,为 cairo 图形库提供绑定。该库用于在Python中创建 SVG,即矢量文件。打开 SVG 文件进行查看(只读)的最简单快捷的方法是使用现代 Web 浏览器,如 Chrome、Firefox、Edge 或 Internet Explorer——几乎所有这些浏览器都应该为 SVG 格式提供某种渲染支持。
SVG文件是使用万维网联盟 (W3C) 创建的二维矢量图形格式的图形文件。它使用基于 XML 的文本格式描述图像。 SVG 文件是作为在 Web 上显示矢量图形的标准格式而开发的。
In order to this we will use copy_path() method with the Context object
Syntax : context.copy_path()
Argument : It takes no arguments
Return : It returns path
例子 :
Python3
# importing pycairo
import cairo
# creating a SVG surface
# here geek1 is file name & 700, 700 is dimension
with cairo.SVGSurface("geek1.svg", 700, 700) as surface:
# creating a cairo context object
context = cairo.Context(surface)
# creating a arc without using closing path method
context.arc(100, 60, 40, 0, 1*22/7)
# stroke the context to remove the moved pen
context.stroke()
# creating a arc with using close path method
context.arc(300, 60, 40, 0, 1*22/7)
# makeing close path
context.close_path()
# Gets a copy of the current path
c = context.copy_path()
# stroke the context to remove the moved pen
context.stroke()
# printing message when file is saved
print(c)
输出 :
move_to 340.000000 60.000000
curve_to 340.000000 70.613281 335.781250 80.792969 328.273438 88.292969
curve_to 320.769531 95.796875 310.585938 100.007813 299.976563 100.000000
curve_to 289.363281 99.992188 279.187500 95.769531 271.687500 88.257813
curve_to 264.191406 80.746094 259.988281 70.562500 260.000000 59.949219
close path
move_to 340.000000 60.000000