PHP code example of projector22 / php-svg-tool
1. Go to this page and download the library: Download projector22/php-svg-tool library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
projector22 / php-svg-tool example snippets
$svg = new SVG( file_get_contents( 'path/to/file.svg' ) );
$svg->set_id( 'myId' )
->set_size( 150, 150 )
->add_to_classlist( 'myClass' )
->set_stroke( 'red' )
->echo();
echo $svg->return();