Código PHP:
<?php
header("Content-type: image/png");
$imagen=imagecreate(420,145);
$imagen=imagecreatefrompng("tarjeta.png");
$text_color = imagecolorallocate($imagen, 255, 255, 255);
$fuente = "fuente.ttf";
imagestring($imagen, 10, 90, 42, "hola", $text_color, $fuente);
imagepng($imagen);
imagedestroy($imagen);
?>
<img src="imagendinamica2.php" />
el error se cual es pues es: $fuente = "fuente.ttf";
si saco esa variable pues funciona a la perfeccion, pero como puedo ponerle la fuente al texto?
Gracias.