mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-24 17:18:07 +02:00
add TODO() for Shading Pattern
This commit is contained in:
parent
452550ea72
commit
20b0fb9dc0
1 changed files with 5 additions and 4 deletions
9
pdf.js
9
pdf.js
|
@ -2867,13 +2867,14 @@ var CanvasGraphics = (function() {
|
|||
error("Unable to find pattern resource");
|
||||
|
||||
var pattern = xref.fetchIfRef(patternRes.get(patternName.name));
|
||||
|
||||
const types = [null, this.tilingFill];
|
||||
var typeNum = pattern.dict.get("PatternType");
|
||||
var patternDict = IsStream(pattern) ? pattern.dict : pattern;
|
||||
const types = [null, this.tilingFill,
|
||||
function() { TODO("Shading Patterns"); }];
|
||||
var typeNum = patternDict.get("PatternType");
|
||||
var patternFn = types[typeNum];
|
||||
if (!patternFn)
|
||||
error("Unhandled pattern type");
|
||||
patternFn.call(this, pattern);
|
||||
patternFn.call(this, pattern, patternDict);
|
||||
}
|
||||
} else {
|
||||
// TODO real impl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue