I want to pass integer value instead of String, say a = 45, but it's not working!
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)