We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpOther Libraries › Getting symbol fonts in Processing
Page Index Toggle Pages: 1
Getting symbol fonts in Processing (Read 710 times)
Getting symbol fonts in Processing
Jan 21st, 2010, 12:40pm
 
I have an app in which I would like various Greek symbols.  Has anyone been successful with getting a symbol font to load?  So far, I've been unsuccessful with trying to create a font (with symbols) via Processing's menu item and also with trying to load the actual Symbol or OpenSymbol fonts through the "createFont" mechanism.

Any thoughts on using the symbol font with Processing?  In particular, is there something about that font that's problematic?  

Many thanks.
Pete
Re: Getting symbol fonts in Processing
Reply #1 - Jan 22nd, 2010, 5:05am
 
Code:
  PFont f = createFont("Arial", 48);
textFont(f);
text("\u03A6\u03A9\u03A8\u0398", 20, 50);

shows some Greek characters on my system.
Page Index Toggle Pages: 1