mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 01:58:06 +02:00
Fix loading of PDF files with invalid or missing Type3 characters (issue 5039)
This commit is contained in:
parent
bd1c7be0cb
commit
2485f11829
5 changed files with 24 additions and 8 deletions
|
@ -1760,14 +1760,17 @@ var TranslatedFont = (function TranslatedFontClosure() {
|
|||
var glyphStream = charProcs[key];
|
||||
var operatorList = new OperatorList();
|
||||
return evaluator.getOperatorList(glyphStream, fontResources,
|
||||
operatorList).
|
||||
then(function () {
|
||||
charProcOperatorList[key] = operatorList.getIR();
|
||||
operatorList).then(function () {
|
||||
charProcOperatorList[key] = operatorList.getIR();
|
||||
|
||||
// Add the dependencies to the parent operator list so they are
|
||||
// resolved before sub operator list is executed synchronously.
|
||||
parentOperatorList.addDependencies(operatorList.dependencies);
|
||||
});
|
||||
// Add the dependencies to the parent operator list so they are
|
||||
// resolved before sub operator list is executed synchronously.
|
||||
parentOperatorList.addDependencies(operatorList.dependencies);
|
||||
}, function (reason) {
|
||||
warn('Type3 font resource \"' + key + '\" is not available');
|
||||
var operatorList = new OperatorList();
|
||||
charProcOperatorList[key] = operatorList.getIR();
|
||||
});
|
||||
}.bind(this, charProcKeys[i]));
|
||||
}
|
||||
this.type3Loaded = loadCharProcsPromise.then(function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue