Rotate an image around its center in canvas

后端 未结 3 1166
暖寄归人
暖寄归人 2020-12-10 12:56

I\'m trying to do my first image animation on canvas. I want the image to rotate but something is not correct in my code. Any ideas? This is all in a jquery document ready:

3条回答
  •  既然无缘
    2020-12-10 13:19

    just change the order of your code, i.e.,

    ctx.rotate(...);
    
    ctx.drawImage(...);
    

    See a working example http://jsbin.com/owuyiq/

    $(function () {
        var canvas = document.getElementById('logobg1');
        var ctx = canvas.getContext('2d');
        var img = new Image();
    
        var ang = 0; //angle
        var fps = 1000 / 25; //number of frames per sec
        img.onload = function () { //on image load do the following stuff
            canvas.width = this.width << 1; //double the canvas width
            canvas.height = this.height << 1; //double the canvas height
            var cache = this; //cache the local copy of image element for future reference
            setInterval(function () {
                ctx.save(); //saves the state of canvas
                ctx.clearRect(0, 0, canvas.width, canvas.height); //clear the canvas
                ctx.translate(cache.width, cache.height); //let's translate
                ctx.rotate(Math.PI / 180 * (ang += 5)); //increment the angle and rotate the image 
                ctx.drawImage(img, -cache.width / 2, -cache.height / 2, cache.width, cache.height); //draw the image ;)
                ctx.restore(); //restore the state of canvas
            }, fps);
        };
    
        img.src = 'http://i.stack.imgur.com/Z97wf.jpg?s=128'; //img
    });
    

提交回复
热议问题