在画布中通过自己的中心旋转图像

时间:2016-01-01 13:42:58

标签: javascript jquery html5 canvas image-rotation

我有一个奇怪的问题,当我做旋转传递文字角度值(我得到之前的角度由控制台打印并放入变量)它完美的工作,但如果我运行代码传递一个变量,如下面的代码,图像被画得“更顶,更左”(抱歉我的英语不好)

function setImg(src,x,y,angle)
{
    var TO_RADIANS = Math.PI/180;
    var base_image = new Image();
    base_image.src = src
    base_image.onload = function () {
        console.log("-->->"+parseFloat(angle))
            ctx.save(); //saves the state of canvas
            ctx.translate(x+(base_image.width/2), y+(base_image.height/2)); //let's translate
            ctx.rotate(angle*TO_RADIANS); //increment the angle and rotate the image
            ctx.drawImage(base_image, -(base_image.width/2),-(base_image.height/2)); //draw the image ;)
            ctx.restore(); //restore the state of canvas
    };

}

谢谢!

1 个答案:

答案 0 :(得分:4)

函数ctx.transformctx.rotatectx.scalectx.translate的工作原理是创建一个新矩阵,然后将现有转换与该新矩阵相乘。

这意味着使用这些函数的结果将根据转换的当前状态而变化。

为了确保将变换应用于默认(标识)矩阵,请使用函数ctx.setTransform(1, 0, 0, 1, 0, 0)重置变换矩阵,该函数用新的默认矩阵替换现有矩阵。

如果在每组转换之前执行此操作,则无需使用保存和恢复来保持当前转换状态。