This is one of the ways you can decode Pixel colors out of the integers you get from Android Pixels. ARGB_8888, stands for Alpha, Reg, Green, Blue. The 8’s stand for the number of bits per channel. In Android, signed int‘s are used to represent pixel’s alpha/color information. Since Android’s language of choice is java, […]