Home | History | Annotate | Download | only in scripts

Lines Matching full:glyphs

7     Generates output of glyphs and positions. Each entry is of the form:
16 p.add_option('-f', '--font', help='Font to use to render glyphs. My be a font file', default="verdana")
68 def __init__(self, fontname, bold, italic, size, glyphs) :
72 self.glyphs = glyphs
98 cr.show_glyphs(self.glyphs) # [(gid, originx, originy)]
100 glyphs = []
103 glyphs.append((g.gid, org[0] + g.offset[0], org[1] - g.offset[1]))
111 frame = gtk.Frame("glyphs")
113 w = GlyphsWindow(family, opts.bold, opts.italic, opts.size, glyphs)