在 Java 中查找 PNG 图像中坐标处的颜色
有了 PNG 图像的 URL(或该 url 中的数据,以 String
形式),如何使用 Java 查找一组坐标处的 RGB(或类似)值?
提前致谢!
With a URL of a PNG image (or the data at that url, in String
form), how could one use Java to find the RGB (or similar) value at a set of coordinates?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个例子应该有你需要的一切:
要引用线程的相关部分:
然后要获取特定像素,请参阅文档:
即:
如果你只想要一个像素,可以使用
getRGB(x, y)
:即:
This example should have all you need:
To cite the relevant part of the thread:
and then to get a particular pixel, see the docs:
i.e.:
If you just want one pixel, you can use
getRGB(x, y)
:i.e.: