如何旋转将绘制到画布上的图像?

发布于 2024-10-09 03:47:30 字数 449 浏览 3 评论 0原文

所以有一个画布和canvasContext我想多次在画布上绘制图像

所以我有这样的代码:

  var img = new Image();
  img.src = 'http://superior0.narod.ru/5050.png';
function drawLine(g, n, x1, y1, x2, y2){

   g.drawImage(img,x1,y1,10,10); 
}

这里我不旋转图像。我需要以从点 x1, y1 绘制到 x2, y2 时如何旋转线的形式旋转它。

如何在 HTML5 和 Javascript 中做这样的事情? (必须仅使用一张画布)

您可以在 此处 看到 acrion 中的问题

so having a canvas and canvasContext I want to draw an image onto that canvas multiple times

So I have code like:

  var img = new Image();
  img.src = 'http://superior0.narod.ru/5050.png';
function drawLine(g, n, x1, y1, x2, y2){

   g.drawImage(img,x1,y1,10,10); 
}

here i do not rotate an image. I need it to be rotated in form of how line would be rotated if drawn from point x1, y1 to x2, y2.

How to do such thing in HTML5 and Javascript? (Having to use only one canvas)

You can see problem in acrion here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚笙 2024-10-16 03:47:30

使用上下文的 rotate 方法,注意调用以正确的顺序旋转和平移(如果您不习惯矩阵变换,这可能会很棘手)。 简单示例

Use the rotate method of the context, taking care to invoke the rotate and translate in the correct order (which can be tricky if you’re not used to matrix transformations). Quick example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文