¿Es posible crear imágenes en PHP?
AUTOR PREGUNTA #1
me gustaría saber si existe alguna forma de hacer imágenes en PHP, Algún ejemplillo me vendría de perlas.
Muchas gracias compañer@s.
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor(120, 20)
or die("No se puede inicializar GD library");
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "Texto prueba", $text_color);
imagepng($im);
imagedestroy($im);
?>