mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Merge pull request #1092 from notmasteryet/issue-940
Fixes type2 fonts conversion
This commit is contained in:
commit
d9f1365b9c
1 changed files with 2 additions and 8 deletions
10
src/fonts.js
10
src/fonts.js
|
@ -3340,15 +3340,9 @@ var Type2CFF = (function Type2CFFClosure() {
|
|||
inverseEncoding[encoding[charcode]] = charcode | 0;
|
||||
for (var i = 0, ii = charsets.length; i < ii; i++) {
|
||||
var glyph = charsets[i];
|
||||
if (glyph == '.notdef') {
|
||||
charstrings.push({
|
||||
unicode: 0,
|
||||
code: 0,
|
||||
gid: i,
|
||||
glyph: glyph
|
||||
});
|
||||
if (glyph == '.notdef')
|
||||
continue;
|
||||
}
|
||||
|
||||
var code = inverseEncoding[i];
|
||||
if (!code || isSpecialUnicode(code)) {
|
||||
unassignedUnicodeItems.push(i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue