1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Merge pull request #3875 from yurydelendik/issue3025

Removes duplicate entries after reading cmap table
This commit is contained in:
Brendan Dahl 2013-11-07 12:29:25 -08:00
commit 18d8557abd
4 changed files with 18 additions and 1 deletions

View file

@ -3077,6 +3077,17 @@ var Font = (function FontClosure() {
error('cmap table has unsupported format: ' + format);
}
// removing duplicate entries
mappings.sort(function (a, b) {
return a.charcode - b.charcode;
});
for (var i = 1; i < mappings.length; i++) {
if (mappings[i - 1].charcode === mappings[i].charcode) {
mappings.splice(i, 1);
i--;
}
}
return {
platformId: potentialTable.platformId,
encodingId: potentialTable.encodingId,
@ -3758,7 +3769,6 @@ var Font = (function FontClosure() {
if (isTrueType) {
var isGlyphLocationsLong = int16([tables.head.data[50],
tables.head.data[51]]);
sanitizeGlyphLocations(tables.loca, tables.glyf, numGlyphs,
isGlyphLocationsLong, hintsValid, dupFirstEntry);
}