Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 freetype2 检索特定字体的大写高度,但我找不到通过 API 进行处理的方法。有谁知道这是否可能,如果可能,那么 api 调用是什么。如果没有,我可以使用任何其他字体库(java、c、python 等)吗?谢谢!
如果我错了,请纠正我,但这似乎对我有用:
int maxHeight = (face_->bbox.yMax >> 6) - (face_->bbox.yMin >> 6);