“油漆” HTML5 Canvas 的方法?

发布于 2024-11-27 15:13:17 字数 120 浏览 1 评论 0原文

有没有办法防止绘制到画布上的任何东西在某个时刻之前被看到?我希望能够一次绘制多个对象,然后在循环中使用另一个对象和不同的复合方法在它们上绘制。

由于第一批绘制需要很长时间,因此在循环之前只能看到结果几分之一秒。

Is there a way of preventing anything drawn to the canvas to be seen until a certain point? I'd like to be able to draw a number of objects at once, then draw over them with another object and a different composite method, on a loop.

Because the first lot of painting takes so long, the result will only be seen for a fraction of a second before it loops.

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

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

发布评论

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

评论(1

掩于岁月 2024-12-04 15:13:17

正常的方法是将这些对象渲染到屏幕外的 Canvas 中,然后使用 context.drawImage() 将其复制到屏幕上。

The normal method would be to render those objects into an off-screen Canvas, and then use context.drawImage() to copy it onto the on-screen one.

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