diff --git a/Applications/Misc/inkscape.md b/Applications/Misc/inkscape.md new file mode 100644 index 0000000..8b8b332 --- /dev/null +++ b/Applications/Misc/inkscape.md @@ -0,0 +1,11 @@ +# [inkscape](https://gitlab.com/inkscape/inkscape) + +Convert `.svg` to `.png`: + +```sh +# version < 1.0 +inkscape -z -w 1024 -h 1024 input.svg -e output.png + +# version >= 1.0 +inkscape -w 1024 -h 1024 input.svg --export-filename output.png +```