I do know about the case of float/integer values for drawImage's x and y. But what I need is a smooth animation with an ability to cache my shapes.
For example, I want to draw some complex shape (i.e. SVG-tiger, converted to canvas-commands) to canvas just once and then move it smoothly with ctx.translate and ctx.drawImage. I need the float values then, because instead I get a step-by-step moving:
Here's the examples at JSFiddle:
- One: Fast speed, with
Math.floorapplied totranslateparameters (xandyare equal to time in seconds multiplied by10): Animation is weird (sequential, not smooth). - Two: Slow speed, with
Math.floorapplied totranslateparameters (xandyare equal to time in seconds): Animation is weird (sequential, not smooth). - Three: Fast speed, no rounding, float values (
xandyare equal to time in seconds multiplied by10). Speed is fast, so animation looks good. - Four: Slow speed, no rounding, float values (
xandyare equal to time in seconds). Speed is slow, so animation looks pulsating. Why?
The last case is the one that confuses me. Am I wrong in my tryings and there is a possibility to make this caching trick work nice?
In Firefox, there is a property of canvas named mozImageSmoothingEnabled (see), but there is no help from that in other browsers. And it also removes paths smoothing.
Code extract:
var shapeCanvas = null;
var w = 320, h = 240;
var startTime = 0;
function start() {
startTime = Date.now();
var docCanvas = document.getElementById('canvas');
. . .
shapeCanvas = document.createElement('canvas');
. . .
drawShape(shapeCanvas.getContext('2d'));
drawNext(docCanvas.getContext('2d'));
}
function drawNext(ctx) {
var msec = (Date.now() - startTime);
var time = msec / 1000; // seconds passed from start
ctx.clearRect(0, 0, w, h);
ctx.save();
// the lines to change: time | (time * 10) | Math.floor(time * 10)
ctx.translate((time < 500) ? Math.floor(time * 10) : 500,
(time < 500) ? Math.floor(time * 10) : 500);
ctx.drawImage(shapeCanvas, 0, 0);
ctx.restore();
__nextFrame(function() {
drawNext(ctx);
});
}
function drawShape(ctx) {
. . .
}
shapeCanvaswith anti-aliasing. When you draw an image with antialiasing onto a canvas at a non-integer location, you get anti-aliasing on top of anti-aliasing. The pulsating blurry edge of the stroke becomes thickest when drawing the image halfway between integer pixel locations and vanishes when drawing the image exactly on integer pixel locations. – ellisbben Feb 1 '12 at 21:52