Canvas-線の描画、画像の描画と切断、キャンバスの方法
3943 ワード
パス描画線の作成
画像の描画とカット
キャンバス方法(Canvas Method)、パンと回転のスケール(Scale Pan and Rotate)
画像の描画とカット
キャンバス方法(Canvas Method)、パンと回転のスケール(Scale Pan and Rotate)
1.scale(x,y); -
x -
y -
context.scale(sx,sy)
context.fillRect(x,y,width,height)
sx: x width
sy: y height
2.translate(x,y) - (0,0)
x,y
3.rotate();
degrees * Math.PI / 180;
degrees ,
4.save() 、
5.restore()