Bueno, He Estado Buscando Algún Código
Que Me Permita Poner Una Imagen (Desde Una Url) A Otra
No Se Si Me Explico,
Quiero Poner Una Imagen Encima De Otra
Pero Que La Imagen Adjunta Pueda Añadirse Desde Una URL Remota
Por El Momento He Echo Una Imagen Y Puedo Ponerle Diferentes Textos
Este Es El Codigo Que Tengo
Código PHP:
<?php
header('Content-Type: image/png');
$im = imagecreatefrompng("cabezal.png");
$negro = imagecolorallocate($im, 0, 0, 0);
$usuario = $_GET["usuario"];
$rango = $_GET["rango"];
$puntos = $_GET["puntos"];
$posts = $_GET["posts"];
$comentarios = $_GET["comentarios"];
$fuente0 = 'arial.ttf';
$fuente1 = 'ariblk.ttf';
imagettftext($im, 18, 0, 157, 76, $negro, $fuente1, $usuario);
imagettftext($im, 13, 0, 161, 112, $negro, $fuente0, $rango);
imagettftext($im, 13, 0, 315, 112, $negro, $fuente0, $puntos);
imagettftext($im, 13, 0, 161, 155, $negro, $fuente0, $posts);
imagettftext($im, 13, 0, 315, 155, $negro, $fuente0, $comentarios);
imagepng($im);
imagedestroy($im);
?>
Espero Puedan Ayudarme
De Antemano, Gracias.