■ canvas 엘리먼트에서 크기 변환을 사용해 사각형을 그리는 방법을 보여준다.
▶ test.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script language="javascript"> function onLoad() { var canvas = document.getElementById('canvas'); var context = canvas.getContext('2d'); context.fillRect(100, 100, 100, 100); context.fillRect(200, 200, 200, 200); context.scale(0.5, 1); context.fillStyle = 'blue'; context.fillRect(200, 200, 100, 100); } </script> </head> <body onload="onLoad();"> <canvas id="canvas" width="400" height="400" /> </body> </html> |