2

我想允许用户旋转画布,同时如果旋转后不再适合,则更改尺寸,这是一个小提琴:

http://jsfiddle.net/6ZsCz/84/

我似乎无法弄清楚转换后的 x/y 位置:

ctx.translate(canvas.width/2,canvas.height/2);

如您所见,图像确实旋转,但是当它向左/向右旋转时它会离开画布,我如何压缩高度以强制它保持在边框中,这是我想要在旋转时实现的示例。

在此处输入图像描述

编辑:

因为这个问题似乎很受欢迎,所以我在这里发布解决方案而不是 JSFiddle

var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
var angleInDegrees=0;
var image=document.createElement("img");
image.onload=function(){
    ctx.drawImage(image,(canvas.width - image.width) / 2, (canvas.height - image.height) / 2,image.width, image.height);//ctx.drawImage(img, x, y, width, height)
}
image.src="http://www.farmvertical.com/wp-content/uploads/2007/10/vertical_farm_v2.jpg";
$("#clockwise").click(function(){ 
    angleInDegrees+=90;
    drawRotated(angleInDegrees);
});
$("#counterclockwise").click(function(){ 
    angleInDegrees-=90;
    drawRotated(angleInDegrees);
});
function drawRotated(degrees){
    ctx.clearRect(0,0,canvas.width,canvas.height);
    ctx.save();
    ctx.translate(canvas.width/2,canvas.height/2);
    ctx.rotate(degrees*Math.PI/180);

    if(angleInDegrees%180==0){
        ctx.drawImage(image, -image.width/2,-image.height/2);
    }else{
        ctx.drawImage(image, -image.width/2,-canvas.width/2,image.width, canvas.width);
    }
    ctx.restore();
}
4

1 回答 1

1

这是你想要的吗?

function drawRotated(degrees){
    ctx.clearRect(0,0,canvas.width,canvas.height);
    ctx.save();
    ctx.translate(canvas.width/2,canvas.height/2);
    ctx.rotate(degrees*Math.PI/180);

    if(angleInDegrees%180==0){
        ctx.drawImage(image, -image.width/2,-image.height/2);
    }else{
        ctx.drawImage(image, -image.width/2,-canvas.width/2,image.width, canvas.width);
    }
    ctx.restore();
}
于 2013-10-25T14:50:20.337 回答