如何使用 Core Text 从文件加载字体 (TTF)?
在 OSX 10.6 之前,ATSFontActivateFromFileSpecification/ATSFontActivateFromFileReference 可用,可用于从文件加载字体。我在核心文本中找不到类似的内容。
Prior to OSX 10.6, ATSFontActivateFromFileSpecification/ATSFontActivateFromFileReference were available and could be used to load a font from a file. I can't find anything similar in Core Text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过
CGFontRef
从字体文件中获取CTFontRef
:You can get a
CTFontRef
from a font file by going via aCGFontRef
:看起来
CTFontManagerCreateFontDescriptorsFromURL
是 Core Text 的替代品。It looks like
CTFontManagerCreateFontDescriptorsFromURL
is the Core Text replacement.以下是 2020 年如何执行此操作的更新版本。现在简单多了。使用 12 作为任意字体大小。
Here's an updated version of how to do this in 2020. Much simpler now. Used 12 as arbitrary type size.