$im = imagecreate(150, 80);
imagecolorallocate($im, 244, 244, 244);
$font = './fonts/OpenSans-Regular.ttf';
$x = 20;
$y = 20;
$text = 'Привет';
// $text = iconv("CP1251", "UTF-8", $text);
$textcolor = imagecolorallocate($im, 0, 0, 255);
$letters = str_split($text);
foreach ($letters as $letter) {
imagettftext($im, 15, 0, $x, $y, $textcolor, $font, $letter);
$x += 20;
}
imagegif($im, './image.gif');
imagedestroy($im);