The following script works with Uniserver3_2a, but fails with Uniserver3_5 Error messages says that the font file is missing. Where can I get a font file and what is the location I have to put it?   Thanks, Han   ++++++++++++++++++++++++++++ function vertText($text, $id) { 	// Create the image 	$im = imagecreatetruecolor(20, 80);   	$background = imagecolorallocate($im, 253, 208, 23); 	$black = imagecolorallocate($im, 0, 0, 0); 	imagefilledrectangle($im, 0, 0, 19, 79, $background);   	$font = 'arial.ttf';   	// Add the text 	imagettftext($im, 12, 270, 5, 5, $black, $font, $text);   	// Create the image with vertical text 	imagepng($im, "$id.png"); 	imagedestroy($im); }