TheBitBang / php-svg-framework-SVGF

SVGF (Scalable Vector Graphics Framework) is a PHP library for creating and modifying SVG files.
https://packagist.org/packages/the-bit-bang/php-svg-framework-svgf
MIT License
30 stars 4 forks source link

This looks great, what library would you recommend to transform to png? #5

Closed notflip closed 3 years ago

xavier-atero commented 4 years ago

I just convert the files locally with Inkscape using a .bat file:

pushd my_folder_path 2>NUL || Exit /B
for %%i in (*.svg) do "c:\Program Files\Inkscape\inkscape" -d 85.33 -z %%i -e %%~ni.png
popd
xavier-atero commented 3 years ago

Closed