バッファリングメソッドを使用してキャンバスを更新します。バッファキャンバスに画像を描画して実際のキャンバスに適用すると、実際のキャンバスには画像がありません。しかし、私は他のものを実際のキャンバスに適用することができます。
これは私のコードです:
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);