2
我使用緩衝方法來更新畫布,事情是當我在我的緩衝區畫布中繪製圖像,並將其應用於真正的畫布有沒有圖像在真正的畫布。但我可以將其他任何東西應用到真正的畫布上。畫布更新與緩衝區drawImage不應用與drawImage行動
這是我的代碼:
var ctx = $('#canvas')[0].getContext("2d"),
width = $("#canvas").width(),
height = $("#canvas").height(),
buffer = $("<canvas>")[0].getContext("2d");
ctx.canvas.width = width;
ctx.canvas.height = height;
buffer.canvas.width = width;
buffer.canvas.height = height;
var image = new Image();
image.src = "img/logo.png";
$(image).load(function() {
buffer.drawImage(image, 0, 0);
});
ctx.drawImage(buffer.canvas, 0, 0);
又是什麼問題? – Niels 2011-12-19 14:03:20