Overlay text on an image?
in
Programming Questions
•
3 years ago
Hi,
Is there an easy way to overlay text on an image?
The text() function draws text to the screen, but I want to draw text on top of an image.
Like this:
- PImage graph = loadImage("my_graph.jpg");
- // write some text on top of the image here
- graph.save("my_graph_with_text_overlaid.jpg");
Thanks
1