How to get the Color of a specific pixel of an Image? - Java
ImageIO.read(file) should return a BufferedImage . You can also use PixelGrabber to get a specific color. Example: ToolkitImage also has a method to get the BufferedImage but may return null: Why does ToolkitImage...