- The image
- Red Value
- Green Value
- Blue Value
The color values range from 0 to 255. If you are unfamiliar with choosing colors in this way this is a useful site that can help.
<?php
header ("Content-type: image/png");
$handle = ImageCreate (130, 50) or die ("Cannot Create image");
$bg_color = ImageColorAllocate ($handle, 255, 111, 0);
ImagePng ($handle);
?>

