Text on gui screen

edited March 2015 in How To...

Hi, I am writing a program, to show some text on gui screen and also able to change it time to time according to my requirement. Can you please guide on how do I print text on GUI screen.

PImage img;

void setup() {
  size(448,299,P3D);
  }

void draw() {
  img=loadImage("imagei.jpg");
  background(img);
 }
Tagged:

Answers

Sign In or Register to comment.