Display text on image

Hello,

Welcome to the Processing forum.

There are examples in the Processing IDE (File > Examples…)

Using this one:
image

Add to setup:

textSize(24);

Add a line to display text after the image:

text("Space: The final frontier.", width-400, 50);

And voila!

image

References:

:)

1 Like