1 ) { @list($table, $id, $fld) = $parts; $string = get_info($table, $id, $fld ? $fld : 'email_address'); } $width = ImageFontWidth($font) * strlen($string); $height = ImageFontHeight($font); if ( ! $string ) { $im = imagecreatefromgif("images/pixel.gif"); } else { $im = imagecreate ($width,$height); sscanf($bg, "%2x%2x%2x", $red, $green, $blue); $background_color = imagecolorallocate ($im, $red, $green, $blue); sscanf($fg, "%2x%2x%2x", $red, $green, $blue); $text_color = imagecolorallocate ($im, $red, $green, $blue); imagestring ($im, $font, 0, 0, $string, $text_color); } header("Content-type: image/png"); imagepng($im); imagedestroy($im);