How can I pass variable in draw.text() function instead of string?
本问题已经有最佳答案,请猛点这里访问。
我想传递整数值而不是字符串,比如说a=45,但它不起作用!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import Image import ImageDraw import ImageFont width = disp.width height = disp.height image = Image.new('1', (width, height)) font = ImageFont.load_default() a = 45 draw.text((x, top), a , font=font, fill=255) draw.text((x, top+20), 'World!', font=font, fill=255) |
使用
也可以使用