estaba usando este codigo:
Código PHP:
<?php
header ("Content-type: image/png");
$string = "anebg was here";
$font = "bitdust1.ttf";
$width = ImageFontWidth($font) * strlen($string);
$height = ImageFontHeight($font);
$im = @imagecreate ($width,$height);
$background_color = imagecolorallocate ($im, 255, 255, 255); // fondo blanco
$text_color = imagecolorallocate ($im, 0, 0,0);//letras negras
imagestring ($im, $font, 0, 0, $string, $text_color);
imagepng ($im);
?>
tengo un pequeño problemita..
como pueden ver aquí..:
el tamaño de la fuente está muy pequeño, alguien sabe como hacerlo mas grande sin tener que cambiar de font?
Gracias
![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
Pd: La fuente se encuentra en "http://anebg.net/mcont/bitdust1.ttf"