Merge pull request #5898 from stri8ed/master

Extract more accurate glyph heights from type3 fonts
This commit is contained in:
Tim van der Meij 2015-05-13 21:07:17 +02:00
commit b34366d2fc
2 changed files with 13 additions and 0 deletions

View file

@ -2438,6 +2438,7 @@ var Font = (function FontClosure() {
this.ascent = properties.ascent / PDF_GLYPH_SPACE_UNITS;
this.descent = properties.descent / PDF_GLYPH_SPACE_UNITS;
this.fontMatrix = properties.fontMatrix;
this.bbox = properties.bbox;
this.toUnicode = properties.toUnicode = this.buildToUnicode(properties);