How can I convert a RGB color into a HEX in AS3?. For example: R=253 G=132 B=58.
Tks.
|
How can I convert a RGB color into a HEX in AS3?. For example: R=253 G=132 B=58. Tks. |
||||
|
|
|
Robusto's solution is too slow. Because RGB values are stored like this:
And a value of 0-255 (that is not a coincidence) has 8b too, you can use left bitwise shifts to get the int value, and THEN you can get a hex (almost 3 times faster). So:
Where red, green and blue are the values of RGB that you want to convert. |
|||||||||||
|
|
Convert the RGB numbers to hex values and concatenate them.
This is less elegant than it ought to be, but it should give you the idea. |
|||||||||
|
|
Aurel300's is pretty much the standard way, so I'd go with it. Robusto's solution, as is, is incorrect. Another option if you want to avoid bit operations is using simple arithmetic:
or, if you think hex notation will cause confusion.
I posted this just to show you another way of getting the hex value (one that makes more clear how components work and add up to the final value, I think), but, as I said already, I'd got with Aurel300's code. |
|||
|
|
|
Most applications need a six digit hex code for colors:
|
|||
|
|