获取 JPanel 上单击位置的颜色?

发布于 2024-08-28 17:49:43 字数 60 浏览 6 评论 0原文

我只想要一种在单击的像素为白色时激活的方法。我将如何实施这个?试图寻找一种返回坐标颜色的方法,但我找不到。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄与心 2024-09-04 17:49:43

视情况而定。如果您有 BufferedImage(或其他一些图像),您可以使用其 getRGB 方法(或 getRaster().getPixel)。如果还没有,您可以使用 JPanel 的 createImage 方法并使用返回的图像来获取像素数据。

Depends. If you have got a BufferedImage (or some other Image) you can use its getRGB methods (or getRaster().getPixel). If you haven't, you can use JPanel's createImage methods and use the returned image to get the pixel data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文