<?php
$fontFile = getcwd() . '/font/Arial.ttf'; // обязательно полный путь
$image = imagecreatetruecolor(200, 460);
$white = imagecolorallocate($image, 255, 255, 255);
imagettftext($image, 20, 0, 30, 25, $white, $fontFile, 'TESTTEXT');
imagettftext($image, 20, 30, 30, 120, $white, $fontFile, 'TESTTEXT');
imagettftext($image, 20, 45, 30, 200, $white, $fontFile, 'TESTTEXT');
imagettftext($image, 20, 60, 30, 300, $white, $fontFile, 'TESTTEXT');
imagettftext($image, 20, 90, 30, 450, $white, $fontFile, 'TESTTEXT');
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);