在 WGL 中打印非英语语言

发布于 2024-12-04 21:01:58 字数 515 浏览 0 评论 0原文

我想在使用 WGL 时打印英语以外的语言(例如俄语和德语)的单词。

我使用 http://nehe.gamedev.net/tutorial/bitmap_fonts 中描述的相同技术/17002/ 用于打印英语,但相同的技术在使用俄语时不起作用,它只是不打印俄语字母,只打印数字。

有可能的解决方案吗?

已解决

通过更改

    base = glGenLists(96);
...
    wglUseFontBitmaps(hDC, 32, 96, base );

为解决

   base = glGenLists(1600);
...
    wglUseFontBitmaps(hDC, 32, 1600, base );

I want to print out words in languages other then english (such as russian and german) while using WGL.

I use the same technique that was described in http://nehe.gamedev.net/tutorial/bitmap_fonts/17002/ for printing english, but the same technique is not useful when using russian, it simply does'nt print the russian letters, only numbers.

Is there a possible solution?

SOLVED

Solved by changing

    base = glGenLists(96);
...
    wglUseFontBitmaps(hDC, 32, 96, base );

to

   base = glGenLists(1600);
...
    wglUseFontBitmaps(hDC, 32, 1600, base );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

比忠 2024-12-11 21:01:58

函数 CreateFont 指定与 ANSI_CHARSET 不同的字符集标识符,在您的情况下,它可能应该是 RUSSIAN_CHARSET

The function CreateFont specify a different character set identifier than ANSI_CHARSET in your case it should probably be RUSSIAN_CHARSET

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文