]> git.parisson.com Git - pdf.js.git/commitdiff
fixed ExtraStateContext.colorSpace impl
authorsbarman <sbarman@L3CWZ5T.(none)>
Mon, 20 Jun 2011 20:47:42 +0000 (13:47 -0700)
committersbarman <sbarman@L3CWZ5T.(none)>
Mon, 20 Jun 2011 20:47:42 +0000 (13:47 -0700)
pdf.js

diff --git a/pdf.js b/pdf.js
index 15b63c1ba5314c264d5bbabf7a4312aefbd387be..001784eea95d299e04375b78c86063da6d302fc2 100644 (file)
--- a/pdf.js
+++ b/pdf.js
@@ -1738,7 +1738,7 @@ var CanvasExtraState = (function() {
         this.fontSize = 0.0;
         this.textMatrix = IDENTITY_MATRIX;
         this.leading = 0.0;
-        this.colorSpace = "DeviceRGB";
+        this.colorSpace = null;
         // Current point (in user coordinates)
         this.x = 0.0;
         this.y = 0.0;
@@ -2454,9 +2454,17 @@ var CanvasGraphics = (function() {
         },
         setFillColorN: function(/*...*/) {
             // TODO real impl
-            var args = arguments;
+            var colorSpace = this.current.colorSpace;
+            if (!colorSpace) {
+                var stateStack = this.stateStack;
+                var i = stateStack.length - 1;
+                while (!colorSpace && i >= 0) {
+                    colorSpace = stateStack[i--].colorSpace;
+                }
+            }
+
             if (this.current.colorSpace == "Pattern") {
-                var patternName = args[0];
+                var patternName = arguments[0];
                 if (IsName(patternName)) {
                     var xref = this.xref;
                     var patternRes = xref.fetchIfRef(this.res.get("Pattern"));