In this java example program we have to write code for getting the pixel color of an image.
Java program to get the color of pixel
In this java example program we have to write code for getting the pixel color of an image. To get the pixel color we need to first have an image and then we will be able to get the pixel color of any specific or particular pixel in the RGB format.
File file= new File("rockface.jpg");
BufferedImage image = ImageIO.read(file);
Above line of code creates an object of File with the image named "rockface.jpg" now we will read this file with the static method of ImageIO read(). Now we can get the pixel color with the getRGB() method with the image object.
Here is the example code of GetPixelColor.java as follows:
GetPixelColor.java
import java.io.*;
|
Output of the above Code:
C:\javaexamples>javac GetPixelColor.java C:\javaexamples>java GetPixelColor Red Color value = 33 Green Color value = 50 Blue Color value = 60 |