سؤال

I'm trying to retrieve the cap height for a particular font using freetype2 but I can't find a way to go about it via the API. Does anybody know if this is even possible and if so what the api call is. If not, any other font libraries (java, c, python, etc) that I could use? Thanks!

هل كانت مفيدة؟

المحلول

Correct me if I'm wrong, but this seems to work for me:

int maxHeight = (face_->bbox.yMax >> 6) - (face_->bbox.yMin >> 6);
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top