A
A
andrey_levushkin2020-09-16 12:30:46
PHP
andrey_levushkin, 2020-09-16 12:30:46

How to save an SVG file drawn in the browser to a directory on the server?

The script creates an SVG image, sets the Content-Type header and displays it on the page.
How can I save this image as an SVG file on the server, in addition to displaying it on the page?
The module is used for generation:
https://github.com/meyfa/php-svg
The description says that you can save the resulting SVG to a file, but I did not find anything about this in the documentation. I found only an example with SVG output to the screen:

use SVG\SVG;
use SVG\Nodes\Shapes\SVGRect;

// image with 100x100 viewport
$image = new SVG(100, 100);
$doc = $image->getDocument();

// blue 40x40 square at (0, 0)
$square = new SVGRect(0, 0, 40, 40);
$square->setStyle('fill', '#0000FF');
$doc->addChild($square);

header('Content-Type: image/svg+xml');
echo $image;

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry, 2020-09-16
@andrey_levushkin

file_put_contents('my-image.svg', $image->toXMLString());

https://github.com/meyfa/php-svg/wiki/Outputting-S...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question