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