What is ARGB in Java?
What is ARGB in Java? A Java color is represented by a 32 bit integer in ARGB format. That means the highest 8 bit is an alpha value, 255 means full opacity while 0 means transparency. You generate colors with alpha value of 255. An Integer is a signed number, Read more…