agregar cadena de texto a imagen png

<?php
function CargarPNG($imagen)
{
    /* Intentar abrir */
    $im = @imagecreatefrompng($imagen);

    /* Ver si falló */
    if(!$im)
    {
        /* Crear una imagen en blanco */
        $im  = imagecreatetruecolor(150, 30);
        $fondo = imagecolorallocate($im, 255, 255, 255);
        $ct  = imagecolorallocate($im, 0, 0, 0);

        imagefilledrectangle($im, 0, 0, 150, 30, $fondo);

        /* Imprimir un mensaje de error */
        imagestring($im, 1, 5, 5, 'Error cargando ' . $imagen, $ct);
    }

    return $im;
}

header('Content-Type: image/png');

$img = CargarPNG('reconocimiento.png');
$color = imagecolorallocate($im, 15, 21, 106);
$fuente = './DJB Angel Baby.ttf';
$texto = 'José Luis Pérez Rendón';


imagettftext($img, 145, 0, 600, 1610, $color, $fuente, $texto);
//imagestring($img, 3, 600, 1420, $texto, $color);

imagepng($img);
imagedestroy($img);

?>

Comentarios