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
)