Estoy intentano hacer una pruebas con PHP GD para mostrar un texto como imagen y no hay manera.
Me sale un rectángulo negro (200x100) y no se que probar.
Aquí el código de pruebas:
Código PHP:
<?php
header("Content-type: image/png");
$im = imagecreatetruecolor(200, 100);
$color = imagecolorallocate($im, 255, 255, 255);
$fuente = "GoodDogCool.otf";
imagettftext($im, 15, 0, 15, 20, $color, $fuente, "TEXTO!");
imagepng($im);
imagedestroy($im);
?>
Un saludo