簡體   English   中英

Python Svgwrite和字體樣式/大小

[英]Python Svgwrite and font styles/ sizes

我正在嘗試將SVG文件連接到Web scraper。

如何使用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()

SvgWrite的制造商Manfred Moitzi寄給我一個更加精心的答案;

這必須由CSS完成,使用'class_'或'style'關鍵字args來設置文本屬性:

dwg = svgwrite.Drawing()

使用'style'關鍵字arg:

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_'關鍵字arg:

創建包含內容的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'關鍵字args,您可以設置每個圖形對象的樣式,並且可以在容器對象中使用它們。

答案很簡單;

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"))

像這樣設置font-size:

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM