如何从 CGFont 或 CTFont 对象获取 NSFont 对象?
我正在处理仅从资源加载 TTF。 这个问题帮助我回答了第 1 部分。但现在我需要 CGFont 或 CTFont 中的 NSFont。
这仅适用于 Mac 应用程序。
I am dealing with loading a TTF from Resource only. This question helped me answer part 1. But now I need a NSFont from a CGFont or CTFont.
This is for a Mac only application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何从 CGFont 获取 NSFont
使用
CTFontCreateWithGraphicsFont
。如何从 CTFont 获取 NSFont
不执行任何操作。你已经有一个了。 NSFont 和 CTFont 是免费桥接的,因此 CTFont 是 NSFont,反之亦然。
How to get an NSFont from a CGFont
Use
CTFontCreateWithGraphicsFont
.How to get an NSFont from a CTFont
Do nothing. You already have one. NSFont and CTFont are toll-free bridged, so a CTFont is an NSFont and vice versa.