Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/01/2010, 20:33
Avatar de angel1993
angel1993
 
Fecha de Ingreso: octubre-2009
Mensajes: 752
Antigüedad: 14 años, 6 meses
Puntos: 22
allow_url_fopen ON

¿Conoceis algun host que permita fpone de enlaces?
quiero hacer esto
<?php header("Content-type: image/png");
$fondo = fopen("http://www.uce.edu.do/home/files/nuestroslogos/LOGO%20UCE%20PNG.png","a+");
$imagen = imagecreatefrompng("$fondo");
$fuente = "fuente.ttf";
$color = imagecolorallocate($imagen,0,0,0);
$texto = "prueba";
imagettftext($imagen,15,0,12,23,$color,$fuente, $texto);
imagepng($imagen);
?>