Canvas - Combing two images, return one img html object?(Canvas - 组合两张图片,返回一个 img html 对象?)
问题描述
我有两个具有不同 src url 的 html img 对象.我想合并这两张图片(使用画布),并创建一个合并的 img 对象.
I have two html img objects with different src urls. I'd like to combine these two images (using canvas), and create one merged img object.
这可能吗?怎么样?
推荐答案
您可以在画布上绘制这两个图像,并将它们与您喜欢的任何叠加模式结合起来.要从画布中获取位图数据,您可以使用toDataURL".请注意,这两个图像应与页面来自同一域,否则出于安全原因,您对像素数据的访问将被阻止.
You can draw both images on the canvas and combine them with any overlay mode you like. To get the bitmap data from the canvas you can use 'toDataURL'. Only note that both images should come from the same domain as the page, otherwise your access to the pixel data is blocked for security reasons.
这篇关于Canvas - 组合两张图片,返回一个 img html 对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Canvas - 组合两张图片,返回一个 img html 对象?
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01