Monday, July 22, 2013

Color to RGB

I lately needed to get the RGB color back from the int it was saved in. The problem is that it's not really supported. The supported format for restoring the color is only HSV which isn't supported by CSS...
When trying to solve that, I came across this link which did the job.
I wrapped the important method with the necessary method to transform the color (saved as int) to HSV so the base method could do its' thing.

No comments:

Post a Comment