Languages
[Edit]
DE

Inkscape - wie man svg zu png in der Konsole konvertieren?

3 points
Created by:
Nikki
10520

Mit Inkscape und Bash ist es möglich, eine *.svg Datei auf folgende Weise in eine *.png Datei umzuwandeln.

1.  Inkscape und Bash-Konsole unter Microsoft Windows - Beispiel

1.1. Mit genauer GrĂ¶ĂŸe

$ "/C/Program Files/Inkscape/inkscape.exe" -z -e "my_output_file.png" -w 100 -h 40 "my_input_file.svg"

Background RRGGBBAA: ffffff00
Area 0:0:1199.79:3284.24 exported to 100 x 40 pixels (1.16922 dpi)
Bitmap saved as: my_output_file.png

Hinweis: -w 100 -h 40 bedeutet, dass die GrĂ¶ĂŸe der ausgegebenen Grafiken 100x40 px betrĂ€gt.

1.2. Bei Beibehaltung des VerhÀltnisses und Skalierung auf die Breite

Bei diesem Ansatz wird die Höhe automatisch berechnet, um das ursprĂŒngliche VerhĂ€ltnis zwischen Breite/Höhe beizubehalten. 

$ "/C/Program Files/Inkscape/inkscape.exe" -z -e "my_output_file.png" -w 100 "my_input_file.svg"

Background RRGGBBAA: ffffff00
Area 0:0:1199.79:3284.24 exported to 100 x 274 pixels (8.0014 dpi)
Bitmap saved as: my_output_file.png

1.3. Bei Beibehaltung des VerhÀltnisses und Skalierung auf die Höhe

Bei diesem Ansatz wird die Höhe automatisch berechnet, um das ursprĂŒngliche VerhĂ€ltnis zwischen Breite/Höhe beizubehalten.

$ "/C/Program Files/Inkscape/inkscape.exe" -z -e "my_output_file.png" -h 300 "my_input_file.svg"

Background RRGGBBAA: ffffff00
Area 0:0:1199.79:3284.24 exported to 110 x 300 pixels (8.76915 dpi)
Bitmap saved as: my_output_file.png

Siehe auch

  1. Inkscape - how to convert svg to png? 
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Inkscape (DE)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

â€ïžđŸ’» 🙂

Join