Skip to content

Instantly share code, notes, and snippets.

@mark-ingenosity
Last active December 3, 2019 04:40
Show Gist options
  • Select an option

  • Save mark-ingenosity/27b23c81b590c0c0d6e43d1d29d30efd to your computer and use it in GitHub Desktop.

Select an option

Save mark-ingenosity/27b23c81b590c0c0d6e43d1d29d30efd to your computer and use it in GitHub Desktop.
[WINDOWS: Image Conversion: SVG to PNG] #image #conversion #windows #file_type
@echo off
for %%f in (%*) do (
echo %%~f
"inkscape.exe" ^
-z ^
--export-background-opacity=0 ^
--export-height=32 ^
--export-png="%%~dpnf.png" ^
--file="%%~f"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment