gpt4 book ai didi

python - 绘制简单的形状并保存到文件 (pdf)

转载 作者:太空狗 更新时间:2023-10-29 22:27:39 26 4
gpt4 key购买 nike

我正在寻找一个 python 库,我可以用它来绘制简单的形状和字符,然后保存到一个文件(格式可转换为 pdf)。如果我不需要运行 X 服务器,我会更愿意。

例如可能看起来像这样

import drawing_lib
obj = drawing_lib.Object()
for i in range(5):
obj.draw_line(from=(i*10, 20), to=(i*10+10, 35))
obj.save_pdf('five_inclined_lines.pdf')

有什么想法吗?

最佳答案

您可以使用 cairo 执行此操作。

import math,cairo

width, height = 768,768
surface = cairo.PDFSurface ("circle.pdf", width, height)
ctx = cairo.Context (surface)
ctx.set_source_rgb(1,1,1)
ctx.rectangle(0,0,width,height)
ctx.fill()
ctx.set_source_rgb(1,0,0)
ctx.move_to(width/2,height/2)
ctx.arc(width/2,height/2,512*0.25,0,math.pi*2)
ctx.fill()
ctx.show_page()

另见:

关于python - 绘制简单的形状并保存到文件 (pdf),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8792570/

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