I have an application that loads an Image and when the user clicks it, a text area appears for this Image (using jquery), where user can write some text on the
jquery
Even more minimal example (draws "Hello world!" in black and with the default font in the top-left of the image):
... from PIL import ImageDraw ... ImageDraw.Draw( image # Image ).text( (0, 0), # Coordinates 'Hello world!', # Text (0, 0, 0) # Color )