Answer the question
In order to leave comments, you need to log in
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question