| Server IP : 216.106.184.20 / Your IP : 216.73.216.234 Web Server : LiteSpeed System : Linux asmodeus.in-hell.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64 User : sekoaid1 ( 1891) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/sekoaid1/public_html/rdmts/application/third_party/dompdf/I18N/Arabic/Examples/ |
Upload File : |
<?php
/**
* Example of render Phoenician language transliteration
*
* @category I18N
* @package I18N_Arabic
* @author Khaled Al-Sham'aa <khaled@ar-php.org>
* @copyright 2006-2016 Khaled Al-Sham'aa
*
* @license LGPL <http://www.gnu.org/licenses/lgpl.txt>
* @link http://www.ar-php.org
*/
error_reporting(E_STRICT);
(!empty($_GET['w'])) ? $word = $_GET['w'] : $word='خالد الشمعة';
require '../../Arabic.php';
$x = new I18N_Arabic('Hiero');
$x->setLanguage('Phoenician');
$im = $x->str2graph($word, 'rtl', 'ar');
$w = imagesx($im);
$h = imagesy($im);
$bg = imagecreatefromjpeg('images/bg.jpg');
$bgw = imagesx($bg);
$bgh = imagesy($bg);
// Set the content-type
header("Content-type: image/png");
imagecopyresized($bg, $im, ($bgw-$w)/2, ($bgh-$h)/2, 0, 0, $w, $h, $w, $h);
imagepng($bg);
imagedestroy($im);
imagedestroy($bg);
?>