有没有办法使用 Javascript 访问图像的位图数据?
我正在寻找一种使用 JavaScript 为 XHTML 页面上显示的图像创建哈希的方法。
I am looking for a way to create a hash for an image displayed on an XHTML page using Javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以通过 XMLHttpRequest 获取它。 请注意,您需要发挥各种技巧,请参阅 http://web.archive.org/web/20071103070418/mgran.blogspot.com/2006/08/downloading-binary-streams-with.html 和 除了更改标题之外,如何在 Firefox 中强制另存为对话框?< /a>) 以二进制形式获取文件。
Yes, you can get it via XMLHttpRequest. Note that you would need to play various tricks see http://web.archive.org/web/20071103070418/mgran.blogspot.com/2006/08/downloading-binary-streams-with.html and How to force save as dialog box in firefox besides changing headers?) to get the file as a binary.
在支持的浏览器上,您可以使用 canvas 元素来获取图像数据。 开始阅读这篇有关像素操作的 Mozilla 文章。
On supported browsers you could use a canvas element to get at image data. Get started with this Mozilla article on pixel manipulation.