Browse Source

TODO for bpc!=8

Chris Jones 14 years ago
parent
commit
ae2e637044
  1. 7
      pdf.js

7
pdf.js

@ -3275,8 +3275,11 @@ var CanvasGraphics = (function() { @@ -3275,8 +3275,11 @@ var CanvasGraphics = (function() {
}
}
if (bitsPerComponent !== 8)
error("Unsupported bpc");
if (bitsPerComponent !== 8) {
TODO("Support bpc="+ bitsPerComponent);
this.restore();
return;
}
var xref = this.xref;
var colorSpaces = this.colorSpaces;

Loading…
Cancel
Save