Lines Matching refs:query
75 #query inkscape about the bounding box of obj
79 for query in q.keys():
81 p = Popen('inkscape --query-%s --query-id=%s "%s"' % (query,id,file), shell=True, stdout=PIPE, stderr=PIPE)
83 q[query] = scale*float(p.stdout.read())
86 f,err = os.popen3('inkscape --query-%s --query-id=%s "%s"' % (query,id,file))[1:]
87 q[query] = scale*float(f.read())