def layout_text(self): ''' Put the text on the image. Does not resize image1 ''' if self.unifont_f: unifont.addText(self.text, self.image1, 0, 0, self.bigascii) else: ## default to 5x7 font ascii_5x7.addText(self.text, self.image1, 0, 0)
def add_7x5_txt(self, txt, x, y, **kw): ascii_5x7.addText(txt, self.im, x, y, **kw)