Searched refs:fontface (Results 1 - 4 of 4) sorted by relevance
/inkscape/share/extensions/ |
H A D | layers2svgfont.py | 72 fontface = self.get_or_create(font, inkex.addNS('font-face', 'svg')) 73 fontface.set("font-family", "SVGFont") 74 fontface.set("units-per-em", str(emsize)) 75 fontface.set("cap-height", str(caps)) 76 fontface.set("x-height", str(xheight)) 77 fontface.set("ascent", str(ascender)) 78 fontface.set("descent", str(descender))
|
H A D | svgfont2layers.py | 65 fontface = font.find(inkex.addNS('font-face', 'svg')) 68 #fontfamily = fontface.get("font-family") 69 emsize = fontface.get("units-per-em") 72 caps = fontface.get("cap-height") 73 xheight = fontface.get("x-height") 74 ascender = fontface.get("ascent") 75 descender = fontface.get("descent")
|
H A D | hershey.py | 56 self.OptionParser.add_option( "--fontface", 58 dest="fontface", default="rowmans", 68 font = eval('hersheydata.' + str(self.options.fontface))
|
/inkscape/src/ui/dialog/ |
H A D | svg-fonts-dialog.cpp | 832 Inkscape::XML::Node *fontface; local 833 fontface = xml_doc->createElement("svg:font-face"); 834 fontface->setAttribute("units-per-em", "1024"); 835 repr->appendChild(fontface);
|
Completed in 20 milliseconds