PHP Classes

File: examples/complex.php

Recommend this page to a friend!
  Classes of Tio   PHP SVG Creator   examples/complex.php   Download  
File: examples/complex.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP SVG Creator
Generate SVG chart documents
Author: By
Last change: Update of examples/complex.php
Date: 2 months ago
Size: 1,135 bytes
 

Contents

Class file image Download
<?php

   
include_once('../src/SVGCreator/Element.php');
    include_once(
'../src/SVGCreator/SVGException.php');
    include_once(
'../src/SVGCreator/Elements/Rect.php');
    include_once(
'../src/SVGCreator/Elements/Group.php');
    include_once(
'../src/SVGCreator/Elements/Svg.php');
    include_once(
'../src/SVGCreator/Elements/Circle.php');
    include_once(
'../src/SVGCreator/Elements/Marker.php');
    include_once(
'../src/SVGCreator/Elements/Defs.php');
    include_once(
'../src/SVGCreator/Elements/Line.php');
    include_once(
'../src/SVGCreator/Elements/Path.php');
    include_once(
'../src/SVGCreator/ComplexFigures/LineEndArrow.php');
?>
<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>Complex Examples</title>
    </head>

    <body>
        <section>
            <?php
                $attributesSvg
= array(
                           
'width' => 1000,
                           
'height' => 1000
                         
);

               
$svg = new \SVGCreator\Elements\Svg($attributesSvg);

               
$complexElement = new \SVGCreator\ComplexFigures\LineEndArrow(5, 10, 155, 235);

               
$svg->append($complexElement->getElement());

                echo
$svg->getString();
           
?>
</section>
    </body>
</html>