<?
if (isset($_GET['email']))
{
  
header("Content-type: image/png");
// Your email address which will be shown in the image

  
$email     =    htmlspecialchars($_GET['email']);
  
$length    =    (strlen($email)*8);
  
$im = @ImageCreate ($length20);
  
$background_color ImageColorAllocate ($im255255255); // White: 255,255,255
  
$text_color ImageColorAllocate ($im55103122);
  
imagestring($im3,5,2,$email$text_color);
  
imagepng ($im);
}

?>