I have a byte array:
byte[] blue_color = {-1,0,112,-64};
How to convert into byte array of RGB?
And also how can I get the real RGB value of the color?
How to convert into byte array of RGB?
byte[] rgb = new byte[3];
System.arraycopy(blue_color, 1, rgb, 0, 3);
And also how can I get the real RGB value of the color?
int red = rgb[0] >= 0 ? rgb[0] : rgb[0] + 256;
int green = rgb[1] >= 0 ? rgb[1] : rgb[1] + 256;
int blue = rgb[2] >= 0 ? rgb[2] : rgb[2] + 256;
How to convert ARGB array into RGB?
How to print integer value:
Could be done prettier with
printf
.