如何从底部中心角度用 HTML5 canvas 元素旋转图像?
将图像尺寸设为 32, 120 −
context.translate(32, 120);
现在旋转画布 −
context.rotate(90 * Math.PI/180);
现在绘制图像 −
context.drawImage(img, -32, -120, 64, 120);
广告
将图像尺寸设为 32, 120 −
context.translate(32, 120);
现在旋转画布 −
context.rotate(90 * Math.PI/180);
现在绘制图像 −
context.drawImage(img, -32, -120, 64, 120);