Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/08/2009, 15:43
helacer
 
Fecha de Ingreso: mayo-2006
Ubicación: Bogotá
Mensajes: 2.061
Antigüedad: 18 años
Puntos: 50
Fuente texto captcha

Necesito configurarle una fuente a este codigo que es de un captcha y no e sabido como. Me pueden colaborar?

Código PHP:
<?
//guarda el texto generado en una variable de session para poderla comparar
        
$_SESSION['CapDigUsrQuasar'] = $this->randomText(5);
        
//carga la imagen de fondo del captcha
        
$captcha imagecreatefromgif("bgcaptcha.gif");
        
//color del texto del captcha
        
$colText imagecolorallocate($captcha205205207);
        
//agrega el texto a la imagen
        
imagestring($captcha,5277$_SESSION['CapDigUsrQuasar'], $colText);
        
//genera la imagen del captcha
        
header("Content-type: image/gif");
        
imagegif($captcha);
?>