dompdf / php-font-lib

A library to read, parse, export and make subsets of different types of font files.
GNU Lesser General Public License v2.1
1.74k stars 253 forks source link

Use the multi-read helpers to reduce big font parsing time by ~40% #35

Closed indreka closed 8 years ago

indreka commented 8 years ago

When loading the FreeSerif font, BinaryStream->read calls went down from 105954 to 42762, readUInt16 calls went from 74220 to 11025, readInt16 calls went from 21112 to 10585. Overall the loading time was reduced by 40%

PhenX commented 8 years ago

Thanks !