Python Svgwrite和字体样式/大小

8
我正在尝试制作一个连接到网络爬虫的SVG文件。
我该如何使用svgwrite更改字体和文本大小?我知道我必须定义CSS样式,并以某种方式将其连接到文本对象。但是这是如何实现的?
以下是我目前拥有的代码。
import svgwrite

svg_document = svgwrite.Drawing(filename = "test-svgwrite3.svg",
                            size = ("1200px", "800px"))
#This is the line I'm stuck at
#svg_document.add(svg_document.style('style="font-family: Arial; font-size  : 34;'))

svg_document.add(svg_document.rect(insert = (900, 800),
                                   size = ("200px", "100px"),
                                   stroke_width = "1",
                                   stroke = "black",
                                   fill = "rgb(255,255,0)"))

svg_document.add(svg_document.text("Reported Crimes in Sweden",
                                   insert = (410, 50),
                                   fill = "rgb(255,255,0)",

                                  #This is the connection to the first line that I'm stuck at
                                  #style = 'style="font-family: Arial; font-size  : 104;'))

print(svg_document.tostring())

svg_document.save()
3个回答

12

制作SvgWrite的Manfred Moitzi给我发送了更详细的回答;

这可以通过CSS完成,使用“class_”或“style”关键字参数来设置文本属性:

dwg = svgwrite.Drawing()

使用 'style' 关键字参数:

g = dwg.g(style="font-size:30;font-family:Comic Sans MS, Arial;font-weight:bold;font-
style:oblique;stroke:black;stroke-width:1;fill:none")

g.add(dwg.text("your text", insert=(10,30))) # settings are valid for all text added to 'g'
dwg.add(g)

使用'class_'关键字参数:
创建一个具有以下内容的CSS文件:
.myclass {
font-size:30;
font-family:Comic Sans MS, Arial;
font-weight:bold;
font-style:oblique;
stroke:black;
stroke-width:1;
fill:none;
}

请查阅CSS参考文档:http://www.w3schools.com/cssref/default.asp

dwg.add_stylesheet(filename, title="sometext") # same rules as for html files

g = dwg.g(class_="myclass")
g.add(dwg.text("your text", insert=(10,30))) # settings are valid for all text added to 'g'
dwg.add(g)

使用'class_'和'style'关键字参数,您可以为每个图形对象设置样式,并且它们可以用于容器对象。


任何CSS样式都允许吗?我无法获得overflow:wrap-around的行为,不得不考虑https://docs.python.org/3/library/textwrap.html... - Rocco Fortuna

7
答案非常简单:
svg_document.add(svg_document.text("Reported Crimes in Sweden",
                                   insert = (410, 50),
                                   fill = "rgb(255,255,0)",
                                   style = "font-size:10px; font-family:Arial"))

1
这似乎只适用于“full”配置文件(而不是“tiny”)。仍然是一个有价值的答案。谢谢。 - Tom Pohl

3

像这样设置字体大小:

dwg = svgwrite.Drawing('test.svg', profile='tiny')
dwg.add(dwg.text('Test',insert = (30, 55),font_size="10px",fill='black'))

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接