<?PHP
  Header 
("Content-type: image/jpeg");
  
$im imagecreate (128,128);

  
$tmp $HTTP_GET_VARS["c"]; // text color
  
if (empty ($tmp))
  {
    
srand((double)microtime()*1000000);
    
$r rand (0255);
    
$g rand (0255);
    
$b rand (0255);
  }
  else
  {
    
$r hexdec (substr ($tmp02));
    
$g hexdec (substr ($tmp22));
    
$b hexdec (substr ($tmp42));
  }
  
$back ImageColorAllocate ($im$r$g$b);
  
ImageJPEG ($im);
  
ImageDestroy ($im);
?>