Hello
I have following code, but every time u run it always says that ttf font can't be found, but font is there
<?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, $black, "test.ttf", "Testing...");
ImagePng ($im);
ImageDestroy ($im);
?>