I want to write a string into an image through imagettftext() and some problems occur in execution
Here is my snippet
$string = $_GET['string'];
$string = =" John Sofronis";
$length=strlen($string);
$width=600;
header("Content-type: image/jpeg");
$image = imagecreate($width,50);
$white = imagecolorallocate($image,255,255,255);
$black = imagecolorallocate($image,0,0,0);
$grey_shade = imagecolorallocate($image,204,204,204);
imagefill($image,0,0,$grey_shade);
imageRectangle($image,0,0,599,599,$black);
imagettftext($image, 10,0,10,33,$black,"Times.ttf",$string);
imagejpeg($image);
The images generated but it seems to be broken links Where is my fault. I have already copy into my folder the Times.ttf but nothing, could you help me?