mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Guessing pdf char size based on the CMap numbers
This commit is contained in:
parent
8b7cd47798
commit
78213e826e
2 changed files with 10 additions and 3 deletions
|
@ -789,6 +789,7 @@ var Font = (function FontClosure() {
|
|||
this.widths = properties.widths;
|
||||
this.defaultWidth = properties.defaultWidth;
|
||||
this.composite = properties.composite;
|
||||
this.wideChars = properties.wideChars;
|
||||
this.hasEncoding = properties.hasEncoding;
|
||||
|
||||
this.fontMatrix = properties.fontMatrix;
|
||||
|
@ -2520,7 +2521,7 @@ var Font = (function FontClosure() {
|
|||
|
||||
glyphs = [];
|
||||
|
||||
if (this.composite) {
|
||||
if (this.wideChars) {
|
||||
// composite fonts have multi-byte strings convert the string from
|
||||
// single-byte to multi-byte
|
||||
// XXX assuming CIDFonts are two-byte - later need to extract the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue