Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

KanjiFont

0.00/5 (No votes)
14 Feb 2001 1  
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.

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