hi, i have the following script:

<?php
Header ("Content-type: image/png");
$im = imagecreate (400, 30);
$black = ImageColorAllocate ($im, 0, 0, 0);
$white = ImageColorAllocate ($im, 255, 255, 255);
ImageTTFText ($im, 20, 0, 10, 20, $white, "verdana.ttf", "Testing... Omega:
");
Imagepng ($im);
ImageDestroy ($im);
?>

i copied the verdana.ttf into the same directory where the script file is.
it doesn't work. any idea what might wrong?

libor



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to