如何使用 CTFontRef 获取 FontFormat
有旧的碳代码使用 FMGetFontFormat 来确定字体是否为“True Type”。由于该 API 已弃用,有没有办法使用 CTFontRef 找到相同的 API。我使用了 CTFontCopyAttribute,但它返回 CTTypeRef 并且我无法获取该值?有什么建议吗?
There is old carbon code using FMGetFontFormat to determine if the Font is of "True Type". Since the API is deprecated, is there a way to find the same using CTFontRef. I used CTFontCopyAttribute, but it is returning CTTypeRef and i am not able to get the value? Any Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CTTypeRef
是通用类型。如果您阅读 kCTFontFormatAttribute 常量的文档,它们会指出:这意味着您需要将该属性视为数字,然后可以将其转换为
short
并根据CTFontFormat
的已知值进行检查:A
CTTypeRef
is a generic type. If you read the docs for thekCTFontFormatAttribute
constant, they state:That means that you need to treat the attribute as a number, which you can then convert to a
short
and check it against the known values forCTFontFormat
: