I have an image with TYPE_3BYTE_BGR
and I want to convert it to TYPE_INT_RGB
.
Although I searched, I did not find a method for this. I want to convert image pixel to pixel. However, it seems that BufferedImage.getRGB(i, j)
not working.
How can I get the RGB values ββin an image of type TYPE_3BYTE_BGR
?
source share