I have the following hex value store in a variable:
0x04a8f5
I want to convert the value to:
0xff04a8f5
How can I accomplish this? I've tried to do this by the following operation:
int result = 0x04a8f5 >> 8;
|
I have the following hex value store in a variable:
I want to convert the value to:
How can I accomplish this? I've tried to do this by the following operation:
|
||||
|
|
Use the following example as a guideline.
Note, this isn't bit shifting because if your original value is a 32 bit (or larger) integer, then there is already a higher order byte available that can store the Also, shifting |
||||
|
|
|
Because you want to prepend FF (1111 1111) to the front of your number, this isn't really a bit shift at all. You are just adding a constant to your color value. As long as your color value is never going to take more than 6 hex digits to represent, you can just do:
|
|||
|
|