Skip to content

Instantly share code, notes, and snippets.

@JosefJezek
Last active March 19, 2024 07:48
Show Gist options
  • Save JosefJezek/5677777 to your computer and use it in GitHub Desktop.
Save JosefJezek/5677777 to your computer and use it in GitHub Desktop.
EPS to SVG Conversion using Inkscape

EPS to SVG using Inkscape Gittip

Author: Josef Jezek

# Install Inkscape on Ubuntu
sudo apt-get install inkscape
# EPS to SVG
inkscape filename.eps -l filename.svg

# SVG to PNG
inkscape filename.svg -e filename.png
@VSasyan
Copy link

VSasyan commented Sep 12, 2017

Thank, this works fine ! However I had an issue (with Debian 9) :

Gtk-Message: Failed to load module "atk-bridge"

So if some people have the same issue, you just need to install libatk-adaptor and libgail-common :

sudo apt install libatk-adaptor libgail-common

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment