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.
Publicado 03 septiembre 2013 - 12:07
Publicado 03 septiembre 2013 - 14:13
<?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);
?>
Publicado 03 septiembre 2013 - 18:59