Lines Matching refs:size
10 self.OptionParser.add_option("-s", "--size", action="store", type="int", dest="icon_size", default="16", help="Icon size")
14 size = self.options.icon_size
18 root.set("width", str(size) + 'px')
19 root.set("height", str(size) + 'px')
20 root.set("viewBox", "0 0 " + str(size) + " " + str(size) )
28 namedview.set(inkex.addNS('zoom', 'inkscape'), str(256.0/size) )
29 namedview.set(inkex.addNS('cx', 'inkscape'), str(size/2.0) )
30 namedview.set(inkex.addNS('cy', 'inkscape'), str(size/2.0) )