来自 CTFontRef 的字体名称

发布于 2024-12-05 17:36:50 字数 391 浏览 1 评论 0原文

我有一个 CTFontRef 变量。

CTFontRef aFontRef;

获取字体大小很容易:

CGFloat aFontSize = CTFontGetSize(aFontRef);

请帮助我检索 FontName。 我期望 FontName 类似于 MarkerFelt-Wide

但是,当我使用像

CTFontCopyFullName(aFontRef)

我这样的方法时,我会得到标记感觉宽

干杯 罗希特

I've a CTFontRef variable.

CTFontRef aFontRef;

Getting Size of Font was easy :

CGFloat aFontSize = CTFontGetSize(aFontRef);

Please help me in retrieving the FontName.
I'm expecting the FontName to be something like MarkerFelt-Wide.

But, when I use methods like

CTFontCopyFullName(aFontRef)

I get Marker Felt Wide

Cheers
Roshit

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

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

发布评论

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

评论(1

遇见了你 2024-12-12 17:36:50

看起来您想要 PostScript 名称,您可以通过 CTFontCopyPostScriptName()

PostScript 名称是内部名称,通常是按名称引用字体的首选方式。

Looks like you want the PostScript name, which you can obtain through CTFontCopyPostScriptName().

The PostScript name is an internal name, and is generally the preferred way to refer to a font by name.

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