I am trying to use the GD library to create dynamic images. And when I try to call 'imageTTFtext' using any of my /WINNT/Fonts/*.ttf, its says file isnt found.
Here is my code
imagettftext($this->im, 12, 0, $x, $y, $myColor, "c:\\WINNT\\Fonts\\ARIAL.TTF", "Hello world");
It says it cant find the file. So i copied arial.ttf to my script dir and tried it without the path, and still the same error.
Any ideas?
Thanks in advance, Ryan
😕