Export JPEG with Inkscape

 · 1 min read

Export JPEG with Inkscape

Inkscape cannot natively export to JPEG, it require an extension for exemple:

This one

Install

Copy jpegexport.inx and jpegexport.inx in ~/.config/inkscape/extensions

Dependencies

  • ImageMagick
  • python2-lxml

Usage

Extensions menu > Export > JPEG Export

Bonus

Convert .svg to .ico with ImageMagick

convert -density 384 icon.svg -define icon:auto-resize icon.ico

Verify

identify icon.ico

Source

stackexchange