如何检查给定的字体系列是否是复合字体?

发布于 2024-09-17 20:11:55 字数 180 浏览 3 评论 0原文

我们可以使用 Fonts.SystemFontFamilies 枚举系统上可用的字体。

  1. 如何区分复合字体和普通字体?
  2. 如何获取复合字体中使用的 FontFamilies?

我尝试了 FontFamily.FamilyTypefaces,但没有帮助。

谢谢

We can enumerate over the fonts available on system using Fonts.SystemFontFamilies.

  1. How can I distinguish between composite fonts and plain-font?
  2. How can I get the FontFamilies used in a composite font?

I tried FontFamily.FamilyTypefaces, but it wasn't helpful.

Thanks

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

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

发布评论

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

评论(1

沩ん囻菔务 2024-09-24 20:11:55

尝试检查 FontFamily.FamilyMaps,对于物理字体应始终为空,对于复合字体应始终为非空。

var font1 = new FontFamily("Global User Interface");
var isComposite1 = font1.FamilyMaps.Any(); // True
var font2 = new FontFamily("Arial");
var isComposite2 = font2.FamilyMaps.Any(); // False

Try checking FontFamily.FamilyMaps, which should always be empty for physical fonts and non-empty for composite fonts.

var font1 = new FontFamily("Global User Interface");
var isComposite1 = font1.FamilyMaps.Any(); // True
var font2 = new FontFamily("Arial");
var isComposite2 = font2.FamilyMaps.Any(); // False
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文