don't die when translating fonts without a charset
This commit is contained in:
parent
2069f3f241
commit
4b118d361c
4
pdf.js
4
pdf.js
@ -2267,10 +2267,10 @@ var CanvasGraphics = (function() {
|
|||||||
|
|
||||||
// Get the font charset if any
|
// Get the font charset if any
|
||||||
var charset = descriptor.get("CharSet");
|
var charset = descriptor.get("CharSet");
|
||||||
if (charset)
|
if (charset) {
|
||||||
assertWellFormed(IsString(charset), "invalid charset");
|
assertWellFormed(IsString(charset), "invalid charset");
|
||||||
|
|
||||||
charset = charset.split("/");
|
charset = charset.split("/");
|
||||||
|
}
|
||||||
} else if (IsName(encoding)) {
|
} else if (IsName(encoding)) {
|
||||||
var encoding = Encodings[encoding.name];
|
var encoding = Encodings[encoding.name];
|
||||||
if (!encoding)
|
if (!encoding)
|
||||||
|
Loading…
Reference in New Issue
Block a user