!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/vendor/khaled.alshamaa/ar-php/examples/   drwxrwxrwx
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ar_glyphs.php (3.39 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Arabic Glyphs to Render Arabic Text</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
</head>

<body>

<div class="Paragraph">
<h2>Arabic Glyphs to Render Arabic Text:</h2>
<p align="justified">Takes Arabic text as an input and performs Arabic glyph joining on it and outputs a UTF-8 
hexadecimals stream that is no longer logically arranged but in a visual order which gives readable results when 
formatted with a simple Unicode rendering just like GD and PDF libraries that does not handle basic connecting 
glyphs of Arabic language yet but simply outputs all stand alone glyphs in left-to-right order.</p>

<p align="justified"><b>What is happening?</b><br />
Computers are designed to handle the subset of the Latin script required to manipulate American English first 
and foremost. Every other writing system is an afterthought, and Arabic is particularly poorly served. Most of 
the images in <a href="https://www.notarabic.com/" target="_blank">Nope, Not Arabic</a> archive are the result 
of non-Arab graphic designers pasting Arabic text into mainstream graphic design software that cannot handle 
anything but Latin characters and not checking with a native speaker.
</p>

</div><br />

<div class="Paragraph">
<h2 dir="ltr" id="example-1">
<a href="#example-1" class="anchor"><img src="./images/link_icon.png" width="16" border="0"></a>Example Output 1:</h2>
<center><img src="./glyphs_gd.php" /></center>
</div><br />

<div class="Paragraph">
<h2 dir="ltr">Example Code 1:</h2>
<?php
$code 
= <<< ENDALL
<?php
    // Create the image
    \$im = @imagecreatefromgif('images/bg.gif');

    // Create some colors
    \$black = imagecolorallocate(\$im, 0, 0, 0);
    \$blue  = imagecolorallocate(\$im, 0, 0, 255);
    \$white = imagecolorallocate(\$im, 255, 255, 255);

    // Replace by your own font full path and name
    \$path = substr(
        \$_SERVER['SCRIPT_FILENAME'], 0, 
        strrpos(\$_SERVER['SCRIPT_FILENAME'], '/')
    );
    \$font = \$path.'/fonts/Amiri-Regular.ttf';

    // UTF-8 charset
    \$text = 'بسم الله الرحمن الرحيم';
    imagefill(\$im, 0, 0, \$white);
    imagettftext(\$im, 20, 0, 10, 50, \$blue, \$font, 'UTF-8:');
    imagettftext(\$im, 20, 0, 250, 50, \$black, \$font, \$text);

    /*
      // Autoload files using Composer autoload
      require_once __DIR__ . '/../vendor/autoload.php';
    */

    require '../src/Arabic.php';
    \$Arabic = new \ArPHP\I18N\Arabic();

    \$text = 'بسم الله الرحمن الرحيم';
    $\text = \$Arabic->utf8Glyphs(\$text);

    imagettftext(\$im, 20, 0, 10, 100, \$blue, \$font, 'Arabic Glyphs:');
    imagettftext(\$im, 20, 0, 250, 100, \$black, \$font, \$text);

    // Using imagepng() results in clearer text compared with imagejpeg()
    imagepng(\$im);
    imagedestroy(\$im);
ENDALL;

highlight_string($code);
?>
<hr/><i>Related Documentation: 
<a href="https://khaled-alshamaa.github.io/ar-php/classes/ArPHP-I18N-Arabic.html#method_utf8Glyphs" target="_blank">utf8Glyphs</a>
</i>
</div>
<footer><i><a href="https://github.com/khaled-alshamaa/ar-php">Ar-PHP</a>, an open-source library for website developers to process Arabic content</i></footer>
</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0056 ]--