如何从逐像素颜色数组中绘制图像?
有没有办法使用 VML 从颜色数组中绘制图像? 我有每个像素按压缩顺序排列的颜色代码数组。我想使用画布中的 putImageData()
等方法通过 VML 来渲染它。
Is there any way to draw an image from a color array using VML?
I have the array of color codes for every pixel in a compressed order. I want to render this with VML using a method like putImageData()
in canvas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VML 没有类似的功能。您可以使用带有
src
属性的
加载图像,但根本不支持画布 ImageData 函数之类的功能。甚至 ExplorerCanvas 也不支持它们(出于同样的原因)。There's no similar function for VML. You can load an image using
<v:image>
with asrc
attribute, but there's no support for anything like the canvas ImageData functions at all. Even ExplorerCanvas doesn't support them (for the same reason).