Subheader

Lazy Programmer's Blog

Pages

Monday, July 11, 2016

SVG support for Imagemagick in Ubuntu

Converting SVG to jpeg/png/gif via Imagemagick in command line you can get Unable to find rsvg-convert library exception. This means you have no support for SVG.

Type in your terminal
sudo apt get install rsvg-convert
in order to add support for scalable vector graphics.

In case if rsvg-convert wasn't found in your repositories you can perform
sudo apt get install librsvg2-bin

After that you will be able to perform conversion from SVG to one of the popular image formats

No comments:

Post a Comment