From: sbarman Date: Tue, 5 Jul 2011 16:44:26 +0000 (-0500) Subject: bug with length of lookup table X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=7d3e08eefd57df07a86910d88f04f14e95e4ce78;p=pdf.js.git bug with length of lookup table --- diff --git a/pdf.js b/pdf.js index 5644bf0..5743876 100644 --- a/pdf.js +++ b/pdf.js @@ -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":