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 & HelpPrograms › Displaying Korean characters
Page Index Toggle Pages: 1
Displaying Korean characters (Read 718 times)
Displaying Korean characters
Jun 24th, 2007, 5:12pm
 
Hi,

I want to display Korean Characters with Processing,
but there are some problems.
Could you help me, further a person who have to use non ASCII language?

Let me see with a very basic example.
------------------------------------------------------
size(300,100);
background(#000000);
fill(#ffffff);
PFont f = loadFont("Univers66.vlw.gz");
textFont(f, 50);
text("handglove", 20, 60);
-------------------------------------------------------
In order to display Korean, I made a font, "Dotum-48.vlw.gz"
(When I made the above font, I check the option, "all characters.")

so I can see a text "handglove" using Korean font.
But, after typing in Korean character instead of "handglove", the result was nothing!

Please help me!

Re: Displaying Korean characters
Reply #1 - Jun 26th, 2007, 7:53pm
 
Yes. Some fonts are illegible (Webdings has the same problem). Try this or download another truetype: SORAPL.TTF (windows).
Page Index Toggle Pages: 1