Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

HTML5 Canvas รองรับ Double Buffering หรือไม่


สำหรับการบัฟเฟอร์สองครั้งบนผืนผ้าใบ ให้สร้างองค์ประกอบผืนผ้าใบที่ 2 แล้ววาดลงไป หลังจากนั้น วาดภาพลงบนผืนผ้าใบแรกโดยใช้เมธอด drawImage()

// canvas element
var canvas1 = document.getElementById('canvas');
var context1 = canvas1.getContext('2d');

// buffer canvas
var canvas2 = document.createElement('canvas');
canvas2.width = 250;
canvas2.height =250;
var context2 = canvas2.getContext('2d');

// create on the canvas
context2.beginPath();
context2.moveTo(10,10);
context2.lineTo(10,30);
context2.stroke();

//render the buffered canvas
context1.drawImage(canvas2, 0, 0);