使用javascript获取Base64 PNG的像素颜色?
我有一个 Base64 编码的 PNG。我需要使用 javascript 获取像素的颜色。我想我必须将其转换回正常的 PNG。 有人能指出我正确的方向吗?
I have a base64 encoded PNG. I need to get the color of a pixel using javascript. I assume I'll have to convert it back to a normal PNG.
Can anyone point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Base64 图像作为源创建一个
Image
对象。然后,您可以将图像绘制到画布上并使用 getImageData 函数获取像素数据。这是基本想法(我还没有测试过):
Create an
Image
object with the base64 image as the source. Then you can draw the image to a canvas and use thegetImageData
function to get the pixel data.Here's the basic idea (I haven't tested this):