如何获取亚洲文本字体列表?

发布于 2024-08-04 14:42:01 字数 199 浏览 1 评论 0原文

有没有办法获得亚洲字体列表? (参见http://dl.getdropbox.com/u/61853/FontDialog.jpg< /a>)

或者我如何知道字体是否支持亚洲文本?

Is there any way to get the list of asian font?
(see http://dl.getdropbox.com/u/61853/FontDialog.jpg)

or how do I know whether a font support asian text or not?

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

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

发布评论

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

评论(1

你げ笑在眉眼 2024-08-11 14:42:01

对于您感兴趣的每种字体:

bool IsFontAsian(Font font)
{
    LOGFONT lf = new LOGFONT();
    font.ToLogFont(lf);
    byte charSet = lf.lfCharSet;
    return charSet == 136; // CHINESEBIG5_CHARSET -- probably also want to check others
    // such as hangul, korean, vietnamese - it depends on what you consider
    // "Asian"
}

MS 文档 此处,请参阅此处了解 LOGFONT 结构定义。

For each font that you're interested in:

bool IsFontAsian(Font font)
{
    LOGFONT lf = new LOGFONT();
    font.ToLogFont(lf);
    byte charSet = lf.lfCharSet;
    return charSet == 136; // CHINESEBIG5_CHARSET -- probably also want to check others
    // such as hangul, korean, vietnamese - it depends on what you consider
    // "Asian"
}

MS documentation here, see here for LOGFONT struct definition.

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