Click here to Skip to main content
15,881,413 members
Articles / Multimedia / GDI

KanjiFont

Rate me:
Please Sign up or sign in to vote.
3.92/5 (9 votes)
14 Feb 2001 109.5K   3K   24   15
Display Chinese & Japanese characters on unicode & non-unicode systems

Sample Image - KanjiFont_Demo.jpg

Introduction

As you may know, Windows 2000 and Windows NT contain natural support for Unicode, and can make use of the Windows API functions for displaying and using wide characters. However, the behavior of those API functions is not always completely the same between NT and 2000. Furthermore, under Windows 95 & 98, Unicode character functions are not supported at all.

This makes it very frustrating for a developer to create an application that needs to display such characters. Recently, I needed to write a small Japanese dictionary for myself. This article contains the small set of classes that encapsulate some simple character translations and the methods for displaying Unicode characters reliably on Windows95/98/NT/2000 to solve this problem. I based my code on some older code done by Glen Rosenthal who wrote JWPce (a very nice Japanese text editor) and on an MSDN article that had some dated examples of a similar solution (Q241020).

Basically, all TrueType fonts contain encoding tables based on the Unicode mappings for the characters those fonts contain. Microsoft distributes a few large fonts with MS Office and with newer version of Internet Explorer that contain characters or 'glyphs' for many different global regions. Normally, a device context will do the translation from character code to glyph index for the systems locale when you call the TextOut or the ExtTextOut functions. This does not work on non-Unicode versions of Windows, and it does not work on some configurations for systems that are Unicode compatible. So in order to display the character you want on all version of windows, you have to calculate the index of the 'glyph' within the true type font for the character code you want to display. Then a call to the ExtTextOut API function will allow you to display the 'glyph' you have selected; so long as it is present in the selected font.

These classes provide a simple set of objects to easily use a true type font that contains glyphs foreign to your system locale, as well as some character code translation objects. To assist in debugging and just generally getting used to seeing Unicode character codes; most programmers are used to ASCII. I've included some iostream manipulators that allow you to easily translate character codes from one encoding format to another.

If you have any enhancements or improvements, please let me know and the source can be updated here.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionDoes it work for arabic? Pin
venomelektro28-Mar-05 8:07
venomelektro28-Mar-05 8:07 
GeneralThe correct character position. Pin
Member 46750128-Sep-04 12:12
Member 46750128-Sep-04 12:12 
QuestionHow can I know which kind of font is suitable to a string? Pin
charcoalc29-Feb-04 19:33
charcoalc29-Feb-04 19:33 
Questionhow about GetCharacterPlacementA? Pin
diamant22-Dec-03 2:45
diamant22-Dec-03 2:45 
GeneralRegarding Kanji fonts Pin
Leela prasanna21-Nov-02 23:14
Leela prasanna21-Nov-02 23:14 
QuestionAlso in the title caption bar? Pin
27-May-02 2:19
suss27-May-02 2:19 
Generalnewbie question Pin
Arthur Chen12-May-01 11:05
Arthur Chen12-May-01 11:05 
QuestionWhy not simply use ExtTextOutW? Pin
Peter Kenyon27-Aug-00 12:25
Peter Kenyon27-Aug-00 12:25 
AnswerRe: Why not simply use ExtTextOutW? Pin
Eric Crahen29-Aug-00 3:25
Eric Crahen29-Aug-00 3:25 
GeneralRe: Why not simply use ExtTextOutW? Pin
Peter29-Aug-00 13:27
Peter29-Aug-00 13:27 
ExtTextOut and TextOut are implemented with Unicode versions on all platforms- see the MSDN library. I have used them myself to output Chinese on the original version of Windows 95.
GeneralRe: Why not simply use ExtTextOutW? Pin
Brian Peterson29-Aug-00 13:48
Brian Peterson29-Aug-00 13:48 
GeneralRe: Why not simply use ExtTextOutW? Pin
Md. Nura Azom Lipon4-Jan-03 3:16
Md. Nura Azom Lipon4-Jan-03 3:16 
GeneralGood work, but we need more! Pin
Paul Selormey26-Aug-00 9:40
Paul Selormey26-Aug-00 9:40 
GeneralRe: Good work, but we need more! Pin
Eric Crahen29-Aug-00 3:23
Eric Crahen29-Aug-00 3:23 
GeneralLibrary Rocks! Pin
tyson25-Aug-00 16:25
tyson25-Aug-00 16:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.