I have a char[] rbg containing :
rgb[0]: red valuergb[1]: green valuergb[2]: blue value
I want to use the method BufferedImage::setRGB(x, y, int rgb)
How can I proceed to convert the char array to the int value ?
Note : I use Java
Edit : I'm looking for the fastest solution
Thanks

