¿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);
?>