ref: 00169a309e8fc6e106f8e4a00681112207f1a59a
parent: 025c2f3fb6c364845616b8eaa9847aa6e3dcd54b
author: Tom Kacvinsky <[email protected]>
date: Sat Mar 10 14:06:54 EST 2001
In CID_Init_Face, use calculated units_per_EM, and if that is not available, default to 100 units per EM. Changed assignment code for ascender and descender values.
--- a/src/cid/cidobjs.c
+++ b/src/cid/cidobjs.c
@@ -222,9 +222,11 @@
root->available_sizes = 0;
root->bbox = face->cid.font_bbox;
- root->units_per_EM = 1000;
- root->ascender = (FT_Short)face->cid.font_bbox.yMax;
- root->descender = (FT_Short)face->cid.font_bbox.yMin;
+ if ( !root->units_per_EM )
+ root->units_per_EM = 1000;
+
+ root->ascender = face->cid.font_bbox.yMax >> 16;
+ root->descender = face->cid.font_bbox.yMin >> 16;
root->height = ( ( root->ascender + root->descender ) * 12 )
/ 10;