Create inkscape.md

main
Nguyen Tran Hau 2020-08-05 18:21:49 +07:00 committed by GitHub
parent b76b45f491
commit 692e506c6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -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
```