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

Merge pull request #870 from notmasteryet/issue-867

(#867) Set Type3 font encoding; enable text selection testing
This commit is contained in:
Artur Adib 2011-12-06 10:12:56 -08:00
commit bf755f459e
2 changed files with 10 additions and 3 deletions

View file

@ -763,8 +763,10 @@ var Font = (function Font() {
this.fontMatrix = properties.fontMatrix;
this.widthMultiplier = 1.0;
if (properties.type == 'Type3')
if (properties.type == 'Type3') {
this.encoding = properties.baseEncoding;
return;
}
// Trying to fix encoding using glyph CIDSystemInfo.
this.loadCidToUnicode(properties);
@ -2150,7 +2152,7 @@ var Font = (function Font() {
};
},
charsToGlyphs: function fonts_chars2Glyphs(chars) {
charsToGlyphs: function fonts_charsToGlyphs(chars) {
var charsCache = this.charsCache;
var glyphs;