2020-08-05 11:21:49 +00:00
|
|
|
# [inkscape](https://gitlab.com/inkscape/inkscape)
|
|
|
|
|
2020-08-11 17:26:24 +00:00
|
|
|
| Distribution | Package |
|
|
|
|
| ------------ | ---------- |
|
|
|
|
| Arch Linux | `inkscape` |
|
|
|
|
| Ubuntu | `inkscape` |
|
|
|
|
|
2020-08-05 11:21:49 +00:00
|
|
|
Convert `.svg` to `.png`:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# version < 1.0
|
2020-08-11 17:26:24 +00:00
|
|
|
inkscape -z input.svg -e output.png
|
2020-08-05 11:21:49 +00:00
|
|
|
|
|
|
|
# version >= 1.0
|
2020-08-11 17:26:24 +00:00
|
|
|
inkscape input.svg --export-filename output.png
|
2020-08-05 11:21:49 +00:00
|
|
|
```
|