Skip to content

Commit

Permalink
Merge pull request #10683 from janpe2/type0-noncid-cmap
Browse files Browse the repository at this point in the history
Use CMap in Type0 fonts when CFF is not a CID font
  • Loading branch information
timvandermeij authored Mar 27, 2019
2 parents a63de0e + 49c6233 commit f9c5811
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/core/fonts.js
Original file line number Diff line number Diff line change
Expand Up @@ -3438,19 +3438,21 @@ var CFFFont = (function CFFFontClosure() {

if (properties.composite) {
charCodeToGlyphId = Object.create(null);
let charCode;
if (cff.isCIDFont) {
// If the font is actually a CID font then we should use the charset
// to map CIDs to GIDs.
for (glyphId = 0; glyphId < charsets.length; glyphId++) {
var cid = charsets[glyphId];
var charCode = properties.cMap.charCodeOf(cid);
charCode = properties.cMap.charCodeOf(cid);
charCodeToGlyphId[charCode] = glyphId;
}
} else {
// If it is NOT actually a CID font then CIDs should be mapped
// directly to GIDs.
for (glyphId = 0; glyphId < cff.charStrings.count; glyphId++) {
charCodeToGlyphId[glyphId] = glyphId;
charCode = properties.cMap.charCodeOf(glyphId);
charCodeToGlyphId[charCode] = glyphId;
}
}
return charCodeToGlyphId;
Expand Down
1 change: 1 addition & 0 deletions test/pdfs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@
!bug1151216.pdf
!bug1175962.pdf
!bug1020226.pdf
!issue9534_reduced.pdf
!basicapi.pdf
!issue2884_reduced.pdf
!mixedfonts.pdf
Expand Down
Binary file added test/pdfs/issue9534_reduced.pdf
Binary file not shown.
6 changes: 6 additions & 0 deletions test/test_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2725,6 +2725,12 @@
"link": true,
"type": "eq"
},
{ "id": "issue9534_reduced",
"file": "pdfs/issue9534_reduced.pdf",
"md5": "f9a47805555de5bc0f9f5f5188df6bad",
"rounds": 1,
"type": "eq"
},
{ "id": "issue1233",
"file": "pdfs/issue1233.pdf",
"md5": "2d3565b0a286e29955796c37c66326c1",
Expand Down

0 comments on commit f9c5811

Please sign in to comment.