, ( ), PHP , , :
:

PHP ( ). :
include('php-gd-farsi-master/FarsiGD.php');
$gd = new FarsiGD();
....
$tx = $gd->persianText($str, 'fa', 'normal');
!: -)
:
<?php
include('php-gd-farsi-master/FarsiGD.php');
$gd = new FarsiGD();
$im = imagecreatetruecolor(300, 100);
$red = imagecolorallocate($im, 0xFF, 0x00, 0x00);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);
imagefilledrectangle($im, 0, 0, 299, 99, $red);
$font_file = './cour.ttf';
$text = imagecreatetruecolor(200, 60);
imagefilledrectangle($text, 0, 0, 200, 60, $red);
$str = '**ماه**';
$tx = $gd->persianText($str, 'fa', 'normal');
imagefttext($text, 24, 10, 10, 50, $black, $font_file,$tx );
$im = $text;
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>