How to get the color of a point in a JPanel? [closed]

血红的双手。 提交于 2019-11-28 11:31:22

Draw the content of the panel inside a Graphics2D object created from a BufferedImage and then retrieve the pixel color:

BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_4BYTE_ABGR);
Graphics2D g2 = image.createGraphics();
_mainPanel.paint(g2);
image.getColorModel().getRGB(pixel);
g2.dispose();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!