Merge pull request #5250 from Snuffleupagus/issue-5238

Fix Symbol fonts without font file but with Encoding dictionary (issue 5238)
This commit is contained in:
Yury Delendik 2014-09-26 15:18:33 -05:00
commit 744c8e8d7e
4 changed files with 15 additions and 0 deletions

View File

@ -2486,6 +2486,13 @@ var Font = (function FontClosure() {
}
this.toFontChar[charCode] = fontChar;
}
for (charCode in properties.differences) {
fontChar = GlyphsUnicode[properties.differences[charCode]];
if (!fontChar) {
continue;
}
this.toFontChar[charCode] = fontChar;
}
} else if (/Dingbats/i.test(fontName)) {
var dingbats = Encodings.ZapfDingbatsEncoding;
for (charCode in dingbats) {

View File

@ -62,6 +62,7 @@
!issue4668.pdf
!issue5039.pdf
!issue5070.pdf
!issue5238.pdf
!issue5244.pdf
!gradientfill.pdf
!bug903856.pdf

BIN
test/pdfs/issue5238.pdf Normal file

Binary file not shown.

View File

@ -478,6 +478,13 @@
"lastPage": 1,
"type": "eq"
},
{ "id": "issue5238",
"file": "pdfs/issue5238.pdf",
"md5": "6ddecda00893be1793de20a70c83a3c2",
"rounds": 1,
"link": false,
"type": "eq"
},
{ "id": "txt2pdf",
"file": "pdfs/txt2pdf.pdf",
"md5": "02cefa0f5e8d96313bb05163b2f88c8c",