获取 JPanel 上单击位置的颜色?
我只想要一种在单击的像素为白色时激活的方法。我将如何实施这个?试图寻找一种返回坐标颜色的方法,但我找不到。
I only want a method to activate if the pixel that is clicked is white. How would I implement this? Trying to look for a method that returns the colour at a coord, but I can't find one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视情况而定。如果您有 BufferedImage(或其他一些图像),您可以使用其
getRGB
方法(或getRaster().getPixel
)。如果还没有,您可以使用 JPanel 的 createImage 方法并使用返回的图像来获取像素数据。Depends. If you have got a BufferedImage (or some other Image) you can use its
getRGB
methods (orgetRaster().getPixel
). If you haven't, you can use JPanel'screateImage
methods and use the returned image to get the pixel data.