View Single Post
  #4  
Old 05-13-2008, 03:17 AM
Programmer Programmer is offline
Coder
Programmer's Avatar
Join Date: Jan 2008
Location: -78.464422, 106.837328
Posts: 449
Programmer has a spectacular aura aboutProgrammer has a spectacular aura about
Send a message via AIM to Programmer Send a message via MSN to Programmer Send a message via Yahoo to Programmer
Quote:
Originally Posted by Tigairius View Post
I dunno... I was bored...

This script converts Graal RGB colors into the hex color table format and vice versa.

Example of use:
PHP Code:
echo("#FF0000 converted in to RGB: " HextoRGB("#ff0000"));
echo(
"1,0,0 converted to hex is: " RGBtoHex(1,0,0)); 
Would return:
PHP Code:
#FF0000 converted in to RGB: 1,0,0
1,0,0 converted to hex is#FF0000 
Already made in my function pack, look near the bottom and you'll see it.
__________________
- Iᴀɴ Zɪᴍᴍᴇʀᴍᴀɴ
Reply With Quote