0
我想旋轉圖像,但根據圖像的寬度和高度調整畫布大小。請在js小提琴中看到我的代碼「http://jsfiddle.net/6ZsCz/1123/」。我實際上是旋轉基於畫布的圖像,但我的畫布具有固定的高度和寬度,因此圖像只是在內部旋轉。我想要這樣的東西。請檢查我附上的截圖。綠色邊框是一個畫布,所以如果我旋轉90度,那麼畫布應該展開高度並顯示整個圖像。圖像旋轉 - 基於圖像高度和寬度調整畫布大小
你能幫忙嗎?
HTML
<canvas id="canvas" ></canvas><br>
<button id="clockwise">Rotate right</button>
的Javascript
var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
var degrees=0;
var image=document.createElement("img");
image.onload=function(){
ctx.drawImage(image,0,0,image.width,image.height);
}
image.src="http://www.ajaxblender.com/article-sources/images/plane-1.jpg";
$("#clockwise").click(function(){
degrees+=90
ctx.clearRect(0,0,canvas.width,canvas.height);
ctx.save();
ctx.translate(image.width/2,image.height/2);
ctx.rotate(degrees*Math.PI/180);
ctx.drawImage(image,0,0,image.width,image.height,-image.width/2,-image.height /2,image.width,image.height);
ctx.restore();
});
非常感謝你的快速幫助。還有一個問題。如果我使用Jquery UI調整圖像大小,那麼通常Jquery UI會在圖像上添加style =「width,height」,然後如果我旋轉圖像,那麼它只是根據圖像原始尺寸旋轉它,而不是從調整大小的圖像尺寸。請參閱我的[更新JS小提琴](http://jsfiddle.net/6ZsCz/1137/)**。是否有可能如果我調整圖像的大小,然後如果我旋轉圖像,那麼它只是基於調整大小的尺寸旋轉? – orbnexus 2014-11-06 20:01:51
@mak我在這裏更新了小提琴。在html圖像中添加一個id,讀取它的w/h,將它設置在canvas上,並使用它與drawImage,你應該沒問題:http://jsfiddle.net/epistemex/bfwdqgm3/如果仍然不清楚只是打開一個新問題。希望這可以幫助! – K3N 2014-11-07 01:37:08