来自 CTFontRef 的字体名称
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您想要 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.