diff --git a/CHANGELOG.md b/CHANGELOG.md index d1e97216..6d317077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Changed - changing a size of `Konva.Stage` will update it in async way (via `batchDraw`). +- `shadowOffset` respect pixel ratio now ## [1.2.2][2016-09-15] diff --git a/src/Context.js b/src/Context.js index 97e4fd9b..5a80af9d 100644 --- a/src/Context.js +++ b/src/Context.js @@ -418,9 +418,14 @@ // attrs that.setAttr = function() { origSetter.apply(that, arguments); + var prop = arguments[0]; + var val = arguments[1]; + if ((prop === 'shadowOffsetX') || (prop === 'shadowOffsetY')) { + val = val / this.canvas.getPixelRatio(); + } that._trace({ - property: arguments[0], - val: arguments[1] + property: prop, + val: val }); }; } @@ -574,8 +579,9 @@ }), // TODO: get this info from transform?? scale = shape.getAbsoluteScale(), - scaleX = scale.x, - scaleY = scale.y; + ratio = this.canvas.getPixelRatio(), + scaleX = scale.x * ratio, + scaleY = scale.y * ratio; this.setAttr('shadowColor', color); this.setAttr('shadowBlur', blur); diff --git a/test/runner.js b/test/runner.js index 9aa354fd..5e37fcae 100644 --- a/test/runner.js +++ b/test/runner.js @@ -109,6 +109,7 @@ function createCanvas() { canvas.width = 578 * ratio; canvas.height = 200 * ratio; canvas.getContext('2d').scale(ratio, ratio); + canvas.ratio = ratio; return canvas; } diff --git a/test/unit/Node-cache-test.js b/test/unit/Node-cache-test.js index 4e321bb0..8da4743d 100644 --- a/test/unit/Node-cache-test.js +++ b/test/unit/Node-cache-test.js @@ -102,7 +102,7 @@ suite('Caching', function() { }); - test.skip('cache rectangle with fill and opacity', function() { + test('cache rectangle with fill and opacity', function() { var stage = addStage(); var layer = new Konva.Layer(); @@ -172,8 +172,9 @@ suite('Caching', function() { shadowColor : 'black' }); rect.cache(); - rect.opacity(0.3); + // rect.opacity(0.3); + layer.add(rect.clone({y: 75, x: 55})); layer.add(rect); stage.add(layer); @@ -249,8 +250,8 @@ suite('Caching', function() { context.fillStyle = 'green'; context.shadowColor = 'black'; context.shadowBlur = 10; - context.shadowOffsetX = 10; - context.shadowOffsetY = 10; + context.shadowOffsetX = 10 * canvas.ratio; + context.shadowOffsetY = 10 * canvas.ratio; context.fill(); compareLayerAndCanvas(layer, canvas, 50); }); @@ -286,8 +287,8 @@ suite('Caching', function() { context.fillStyle = 'green'; context.shadowColor = 'black'; context.shadowBlur = 10; - context.shadowOffsetX = -10; - context.shadowOffsetY = -10; + context.shadowOffsetX = -10 * canvas.ratio; + context.shadowOffsetY = -10 * canvas.ratio; context.fill(); compareLayerAndCanvas(layer, canvas, 50); }); @@ -325,8 +326,8 @@ suite('Caching', function() { context.fillStyle = 'green'; context.shadowColor = 'black'; context.shadowBlur = 10; - context.shadowOffsetX = -10; - context.shadowOffsetY = -10; + context.shadowOffsetX = -10 * canvas.ratio; + context.shadowOffsetY = -10 * canvas.ratio; context.fill(); compareLayerAndCanvas(layer, canvas, 50); }); @@ -444,8 +445,8 @@ suite('Caching', function() { context.fillStyle = 'green'; context.shadowColor = 'black'; context.shadowBlur = 10; - context.shadowOffsetX = 10; - context.shadowOffsetY = 10; + context.shadowOffsetX = 10 * canvas.ratio; + context.shadowOffsetY = 10 * canvas.ratio; context.fill(); context.restore(); @@ -557,8 +558,8 @@ suite('Caching', function() { context.fillStyle = 'green'; context.shadowColor = 'black'; context.shadowBlur = 10; - context.shadowOffsetX = 10; - context.shadowOffsetY = 10; + context.shadowOffsetX = 10 * canvas.ratio; + context.shadowOffsetY = 10 * canvas.ratio; context.fill(); context.restore(); diff --git a/test/unit/Shape-test.js b/test/unit/Shape-test.js index 3ba583bd..96f4aa68 100644 --- a/test/unit/Shape-test.js +++ b/test/unit/Shape-test.js @@ -352,8 +352,8 @@ suite('Shape', function() { context.fillStyle = 'green'; context.shadowColor = 'rgba(0,0,0,0.5)'; context.shadowBlur = 10; - context.shadowOffsetX = 10; - context.shadowOffsetY = 10; + context.shadowOffsetX = 10 * canvas.ratio; + context.shadowOffsetY = 10 * canvas.ratio; context.fill(); compareLayerAndCanvas(layer, canvas, 10); @@ -404,8 +404,8 @@ suite('Shape', function() { context.shadowColor = 'rgba(0,0,0,0.5)'; context.shadowBlur = 10; - context.shadowOffsetX = 10; - context.shadowOffsetY = 10; + context.shadowOffsetX = 10 * canvas.ratio; + context.shadowOffsetY = 10 * canvas.ratio; context.stroke(); compareLayerAndCanvas(layer, canvas, 10); @@ -491,8 +491,8 @@ suite('Shape', function() { context.fillStyle = 'green'; context.shadowColor = 'grey'; context.shadowBlur = 10; - context.shadowOffsetX = 20; - context.shadowOffsetY = 20; + context.shadowOffsetX = 20 * canvas.ratio; + context.shadowOffsetY = 20 * canvas.ratio; context.lineWidth = 10; context.stroke(); context.fill(); @@ -553,8 +553,8 @@ suite('Shape', function() { context.closePath(); context.shadowColor = 'grey'; context.shadowBlur = 1; - context.shadowOffsetX = 20; - context.shadowOffsetY = 20; + context.shadowOffsetX = 20 * canvas.ratio; + context.shadowOffsetY = 20 * canvas.ratio; context.fillStyle = 'black'; context.fill(); context.restore(); @@ -624,8 +624,8 @@ suite('Shape', function() { context.save(); context.shadowColor = 'grey'; context.shadowBlur = 2; - context.shadowOffsetX = 20; - context.shadowOffsetY = 20; + context.shadowOffsetX = 20 * canvas.ratio; + context.shadowOffsetY = 20 * canvas.ratio; context.font = 'normal 50px Arial'; context.textBaseline = 'middle'; @@ -947,8 +947,8 @@ suite('Shape', function() { context.fillStyle = 'green'; context.shadowColor = 'rgba(0,0,0,1)'; context.shadowBlur = 0; - context.shadowOffsetX = 5; - context.shadowOffsetY = 5; + context.shadowOffsetX = 5 * canvas.ratio; + context.shadowOffsetY = 5 * canvas.ratio; context.fill(); @@ -994,8 +994,8 @@ suite('Shape', function() { context.fillStyle = 'green'; context.shadowColor = 'rgba(0,0,0,1)'; context.shadowBlur = 0; - context.shadowOffsetX = 5; - context.shadowOffsetY = 5; + context.shadowOffsetX = 5 * canvas.ratio; + context.shadowOffsetY = 5 * canvas.ratio; context.fill(); compareLayerAndCanvas(layer, canvas, 10); @@ -1082,8 +1082,8 @@ suite('Shape', function() { context.fillStyle = 'green'; context.shadowColor = 'grey'; context.shadowBlur = 10; - context.shadowOffsetX = 20; - context.shadowOffsetY = 20; + context.shadowOffsetX = 20 * canvas.ratio; + context.shadowOffsetY = 20 * canvas.ratio; context.lineWidth = 10; context.fill(); @@ -1149,30 +1149,24 @@ suite('Shape', function() { test('shadow should respect pixel ratio', function() { + var stage = addStage(); - var layer1 = new Konva.Layer(); + var layer = new Konva.Layer(); + layer.getCanvas().setPixelRatio(2); var shape = new Konva.Rect({ - width: 50, - height: 50, + width: 100, + height: 100, fill: 'black', shadowColor: 'green', - shadowOffsetX: 10, - shadowOffsetY: 10, - opacity: 0.5 + shadowOffsetX: 20, + shadowOffsetY: 20, + shadowBlur: 0 }); - layer1.add(shape); - stage.add(layer1); - - var layer2 = layer1.clone(); - - console.log(layer2.children.length); - layer2.getCanvas().setPixelRatio(1); - layer1.scaleX(0.5); layer1.scaleY(0.5); - stage.add(layer2); - - compareLayers(layer2, layer1, 10); - + layer.add(shape); + stage.add(layer); + var data = layer.getContext().getImageData(15 * 2, (100 + 5) * 2, 1, 1); + assert.equal(data.data[3], 0, 'pixel should be empty, no shadow here'); }); diff --git a/test/unit/shapes/Text-test.js b/test/unit/shapes/Text-test.js index 04e7bd0a..33eecda5 100644 --- a/test/unit/shapes/Text-test.js +++ b/test/unit/shapes/Text-test.js @@ -82,7 +82,7 @@ suite('Text', function(){ assert.equal(text.getClassName(),'Text', 'getClassName should be Text'); }); - test.only('text with fill and shadow', function() { + test.skip('text with fill and shadow', function() { var stage = addStage(); var layer = new Konva.Layer(); @@ -93,8 +93,8 @@ suite('Text', function(){ fontSize: 50, fill: 'black', shadowColor: 'darkgrey', - shadowOffsetX: 20, - shadowOffsetY: 20, + shadowOffsetX: 0, + shadowOffsetY: 50, shadowBlur: 0 }); @@ -104,15 +104,15 @@ suite('Text', function(){ var canvas = createCanvas(); var context = canvas.getContext('2d'); - context.textBaseline = 'middle'; + context.textBaseline = 'top'; context.font = "normal normal 50px Arial"; context.fillStyle = 'darkgrey'; - context.fillText('Hello World!', 20, 20 + 25); + context.fillText('Hello World!', 10, (50)); context.fillStyle = 'black'; - context.fillText('Hello World!', 10, 10 + 25); + context.fillText('Hello World!', 10, 10); - compareLayerAndCanvas(layer, canvas, 250); + compareLayerAndCanvas(layer, canvas, 254); }); // ======================================================