How to write Text in screen....
in
Programming Questions
•
1 year ago
Hi,
I am new to programming of Processing and learning from reference i want help in writing text to screen :-
the font i want use can be any one from my control panel eg: 101! Cacti
but i have copy this to download folder of processing and changed
I am new to programming of Processing and learning from reference i want help in writing text to screen :-
the font i want use can be any one from my control panel eg: 101! Cacti
but i have copy this to download folder of processing and changed
FFScala-32 to 101! Cacti but it does not work , please help..
PFont font; // The font must be located in the sketch's // "data" directory to load successfully font = loadFont("FFScala-32.vlw"); textFont(font); text("word", 15, 30); fill(0, 102, 153); text("word", 15, 60); fill(0, 102, 153, 51); text("word", 15, 90);
1