Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要导入现有的 svg 图片并在其上添加圆形和方形等元素。我的文件是“test.svg”,所以我尝试了,dwg = svgwrite.Drawing('test.svg') 但它创建了一个没有任何内容的新 svg 文件。我使用 python lib svgwrite,你有什么想法吗? 谢谢你,对不起我的英语......我尽力了!
dwg = svgwrite.Drawing('test.svg')
svgwrite 只会创建 svg 文件。svgwrite 不读取 svg 文件。如果您想读取、修改然后写入 svg,svgwrite 包不是要使用的包,但我不知道适合您的包。
可以创建使用对另一个图像的引用的 svg。那就是有一个 svg,然后您将第二个 svg 放在第一个 svg 之上。我没有这样做,也不知道它是否真的有效。