image
parent
f436e6a681
commit
582041a375
|
@ -0,0 +1,7 @@
|
|||
# [imagemagick](https://github.com/ImageMagick/ImageMagick)
|
||||
|
||||
Convert `.svg` to `.png`:
|
||||
|
||||
```sh
|
||||
convert input.svg output.png
|
||||
```
|
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue