I'm trying to convert FROM integer notation TO RGB notation.
"Integer notation is a value from 0 to 16777215 and it can be obtained from a rgb code rgb(R,G,B) using the formula 256*256*R+256*G+B."
I understand that, but what is the formula to convert from integer notation to RGB?
So if I enter 887766, I should get back (13,139,214) - how would I go about doing that?
Cheers guys