import PIL def imagedraw_textsize_c(draw, text): if int(PIL.__version__.split('.')[0]) < 10: tw, th = draw.textsize(text) else: left, top, right, bottom = draw.textbbox((0, 0), text) tw, th = right - left, bottom - top return tw, th