Hi sorry for being annoying by rephrasing my question but I am just on the point of discovering my answer.
I have an array of int
composed of RGB values, I need to decompose that int
array into a byte array, but it should be in BGR order.
The array of int composed of RGB values is being created like so:
pix[index++] = (255 << 24) | (red << 16) | blue;