Quería saber si se puede hacer lo siguiente:
Código PHP:
header('Content-Type: image/'.$type);
$image=@imagecreatefrom.$type($url);
imagestring($image,3,5,5,$type,'white');
image.$type($image);
imagedestroy($image);
Código PHP:
header('Content-Type: image/png');
$image=@imagecreatefrompng($url);
imagestring($image,3,5,5,$type,'white');
imagepng($image);
imagedestroy($image);
PD: Si esto es POSIBLE me dirian bien la forma de hacerlo, porque estoy teniendo problemas al crear las imagenes así.