以颜色对象的形式获取缓冲图像中像素的颜色
我有一个缓冲图像,我想获取特定坐标处的像素颜色。是否有一个函数以颜色对象而不是 RGB 值的形式返回此值?
顺便说一下,这是用Java编写的..
I have a buffered image, I want to get the colour of pixels at a specific coord. Is there a function that returns this in the form of a color object as opposed to RGB values?
This is in Java by the way..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看颜色 API。
您可以使用从缓冲图像 getRGB(...) 方法返回的 rgb 值创建 Color 对象。
Check out the Color API.
You can create a Color object using the rgb value returned from the buffered image getRGB(...) method.