Merge pull request #191 from sbarman/indexcs

bug with length of lookup table
This commit is contained in:
sbarman 2011-07-05 09:46:50 -07:00
commit c7bcd91813

2
pdf.js
View File

@ -4452,7 +4452,7 @@ var ColorSpace = (function() {
break;
case "Indexed":
var base = ColorSpace.parse(cs[1], xref, res);
var hiVal = cs[2];
var hiVal = cs[2] + 1;
var lookup = xref.fetchIfRef(cs[3]);
return new IndexedCS(base, hiVal, lookup);
case "Lab":