Skip to content

Instantly share code, notes, and snippets.

View JouriR's full-sized avatar
🏸

Jouri JouriR

🏸
View GitHub Profile
@JouriR
JouriR / SVGtoPNG.php
Last active January 20, 2022 09:32
A PHP script that converts an SVG to a PNG image using Inkscape.
<?php
$contentType = $_SERVER["CONTENT_TYPE"];
if ($contentType == "application/json") {
$rawData = file_get_contents("php://input");
$json = json_decode($rawData, true);
$data = $json["svg"];
} else {
$data = file_get_contents("input.svg");
}