PHP Classes

File: docs/files/examples/circle.php.txt

Recommend this page to a friend!
  Classes of Tio   PHP SVG Creator   docs/files/examples/circle.php.txt   Download  
File: docs/files/examples/circle.php.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: PHP SVG Creator
Generate SVG chart documents
Author: By
Last change: Update of docs/files/examples/circle.php.txt
Date: 3 months ago
Size: 1,383 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'); ?> <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Circle Example</title> </head> <body> <section> <?php $attributesSvg = array( 'width' => 1000, 'height' => 1000 ); $svg = new \SVGCreator\Elements\Svg($attributesSvg); $svg->append(\SVGCreator\Element::CIRCLE) ->attr('cx', 100) ->attr('cy', 100) ->attr('fill', '#ff0000') ->attr('r', 50) ->attr('stroke', '#000000') ->attr('stroke-width', '5px'); $svg->append(\SVGCreator\Element::CIRCLE) ->attr('cx', 250) ->attr('cy', 140) ->attr('fill', 'green') ->attr('r', 20) ->attr('stroke', 'cyan') ->attr('stroke-width', '5px'); $svg->append($circle); echo $svg->getString(); ?> </section> </body> </html>