Converting from EPS to SVG format

53

26

What is the best way to convert from an EPS formatted vector graphic to an SVG formatted graphic using only freely available tools?

user13137

Posted 2010-10-12T01:39:20.220

Reputation: 730

Answers

18

You should be able to open the EPS in inkscape and save as SVG from there.

Make sure to save as Plain SVG not inkscape SVG for better comparability. Adobe illustrator can do the same thing, its not free, but the trial version is.

alpha1

Posted 2010-10-12T01:39:20.220

Reputation: 1 638

1@Brilliand but other way around, inskape still corrupts data and breaks EPS files when exporting to EPS. Currently, I use online website to convert svg to eps which isn't very practical. – Tomáš Zato - Reinstate Monica – 2015-03-28T14:37:29.767

1Admittedly using a very simple EPS, I just had perfect results using Inkscape. – GKFX – 2015-05-12T17:09:38.673

4

This can also be done using the command line: inkscape --export-plain-svg output.svg input.eps

– jja – 2015-09-30T16:55:29.390

@jja you comment should have been an answer! – sanmai – 2017-12-19T08:11:06.967

4I was unable to open or import 7 different EPS files in Inkscape 0.92. – Thomas Weller – 2018-01-30T13:19:30.530

1I have tried several times to convert an EPS to SVG with Inkskape, and every time it gets the colours and layers all wrong. It's not at all reliable. – Neil – 2011-06-11T14:42:48.090

28

Uniconvertor is currently the most convenient option.

It's a command-line tool that shares code with the sK1 Project. You won't have to bother cropping the image in sK1 if you use uniconvertor, so it's more automated.

Run it like this:

uniconvertor before.eps after.svg

And that's it. I tried it on one EPS, but the SVG was offset improperly, but it may work for you.

Here's a list of alternatives and reasons why they suck:

  1. The sK1 Project

    It has the sense of a "page" that you put your drawing on, so after you import an EPS, you have to move it around and manually crop the page.

  2. ImageMagick

    For EPS to SVG conversion, ImageMagick does some really stupid bitmap conversion and will render SVG files that are 50mb, when they should be a few kb. It doesn't actually have a real vector conversion algorithm for these formats.

  3. InkScape

    Every time I've converted an EPS with InkScape, it's messed up the colours. This is due to an Inkscape bug with importing EPS files. (Update: Fix Released for this bug on February 2015)

  4. Gimp

    Gimp just does the same stupid bitmap conversion that ImageMagick does.

  5. Scribus

    It gets the colours of my EPS file even more wrong than Inkscape, while Preview for Mac can read it just fine.

Neil

Posted 2010-10-12T01:39:20.220

Reputation: 4 761

2Hello from the future, just wanted to say thanks for pointing to the bug report for inkscape. Some kind soul went in and fixed the bug and just upgrading to the latest release allowed me to drag and drop an EPS and get the proper result in Inkscape. – shaunhusain – 2015-03-13T03:01:22.390

At least as of version 1.1.5 it does not support EPS version 3.1. – jcoffland – 2015-04-12T00:42:20.350

Has Image Magick improved on this conversion? It just tried and works fine. Just run convert this.eps to_this.svg – toto_tico – 2015-10-23T18:42:28.943

Uniconvertor 2.0 doesn't seem to support output to SVG – That Brazilian Guy – 2015-12-07T15:24:12.467

1

Did you install it on OS X, and if so, how? Could help this guy out here? How to install Uniconverter (command-line app) on Mac OS 10.7.2 (Lion)?

– slhck – 2012-01-05T08:08:07.157

I didn't install it in OS X. I was testing all of that software in Linux, but merely noticed that Preview on Mac OS X just works. – Neil – 2012-01-11T00:00:35.377

uniconverter does not preserves linear or radial gradients - after converting it's all solid coloured – drahnr – 2012-08-03T07:37:02.593

Uniconvertor doesn't support C5D0D3C6-type EPS files (the most common type).

Scribus doesn't import half the file on the ones I've tried.

Inkscape for Windows doesn't support EPS at all.

Just install pstoedit on Linux, and use that (again, the Windows version is broken). – Mark – 2013-06-30T00:23:51.163

27

Currently what's working best for me on linux is the following:

epstopdf foo.eps
pdf2svg foo.pdf foo.svg

I believe the first command is a wrapper for ghostscript, and the second is a wrapper for calls to the Poppler and Cairo libraries. On ubuntu, they're in the packages texlive-font-utils and pdf2svg. Gradients come out looking right, but don't seem to be editable in inkscape.

I tried using inkscape and uniconverter for this purpose, and as of Jan 2013, both seemed broken when tested on an example containing nothig but some very simple line art. Inkscape throws errors and can't open the eps file. Uniconverter crashes.

Scribus and sk1 may work, but seem awkward and not really suited for this task.

Ben Crowell

Posted 2010-10-12T01:39:20.220

Reputation: 392

2This worked perfectly for me and produced a nice small svg file. In my case, I wanted to output the svg inline on a webpage, so size and compatibility matters. – RevNoah – 2016-06-23T17:36:14.237

9

I had much better results with:

ps2pdf -dEPSCrop infile.eps
pdf2svg infile.eps outfile.svg

The resulting SVG was much cleaner.

Erik

Posted 2010-10-12T01:39:20.220

Reputation: 255

Agree, and beauty of the ps2pdf command is that it is installed with ghostscript. The -dEPSCrop EPS parameter was a good tip! Hidden in the doc -> use.htm file. – V Stuart Foote – 2014-08-31T18:22:50.553

2But this way, vector images in eps files created with Illustrator get converted to raster :-( – gerlos – 2014-09-04T11:16:00.740

Would you be able to link to such a file? I don't have Illustrator. – Erik – 2014-09-05T10:02:19.300

Just as gerlos said, unfortunately this doesn't maintain the vector graphics but converts to rasterized image instead. – Czechnology – 2017-03-29T17:01:46.347

1Shouldn't it be pdf2svg infile.pdf outfile.svg instead of infile.eps? (and @gerlos my eps converted to a real svg here, no rasterization... but I don't know which program was used to create the eps file) – mozzbozz – 2018-10-24T09:02:56.673

6

Actually, opening in Inkscape is only possible if you have Ghostscript installed and some conversion script is in your $PATH$ - I could not get this to work on Windows 7. On Linux, it's easier.

MichielB

Posted 2010-10-12T01:39:20.220

Reputation: 231

4

Ben's solution (with a slight modification: eps2pdf => epspdf):

epspdf infile.eps
pdf2svg infile.pdf outfile.svg

worked flawlessly for me. I am using Ubuntu 11.04. The conversion was fast and it preserved colours perfectly. Thanks to the developers and to Ben for recommending this solution.(I also tried all the other solutions mentioned, but they all failed me because of missing installation dependencies or loss of palette information.)

user256274

Posted 2010-10-12T01:39:20.220

Reputation: 41

3

Install Inkscape on Ubuntu

sudo apt-get install inkscape

EPS to SVG CLI

inkscape filename.eps -l filename.svg

SVG to PNG CLI

inkscape filename.svg -e filename.png

timelf123

Posted 2010-10-12T01:39:20.220

Reputation: 131

3

You might also want to try Scribus (it does import EPS, it has a solid CMYK support, and I don't know till what extent, but saves as svg) , or, SK1 project. But this last one yet only works in linux. (soon to appear OSX and Windows ports) The difference with Inkscape (for just the conversion) seems to be a better CMYK and other printing features support.

S.gfx

Posted 2010-10-12T01:39:20.220

Reputation: 1 643

1I've used Scripus for that. It's sad there's no CLI interface. – Adobe – 2012-09-05T07:44:50.810

1

pstoedit

pstoedit is a tool converting PostScript and PDF files into various other formats suported by different drawing editors.

pstoedit -f plot-svg before.eps after.svg

On OS  X, you can install it using port: sudo port install pstoedit

Michael Schmid

Posted 2010-10-12T01:39:20.220

Reputation: 297

This would be the best way if it wouldn't be broken. The latest version of pstoedit still uses ghostscript option -dDELAYBIND for plot-svg which has been removed from the latest version of ghostscript. Still upvoted, – Christian Hujer – 2018-08-09T06:12:42.017

1

https://cloudconvert.com/eps-to-svg is the absolute easiest solution i've found since inkscape, gravitdesigner, and virtually all other software seem to inexplicably have issues with this - cloudconvert seems to work flawlessly.

larsbamble.com

Posted 2010-10-12T01:39:20.220

Reputation: 11

Excessive promotion of a specific product/resource may be perceived by the community as spam. Take a look at the [help], specially What kind of behavior is expected of users?'s last section: Avoid overt self-promotion. You might also be interested in How to not be a spammer and How do I advertise on Super User?.

– double-beep – 2019-03-31T17:19:16.343

1

I struggle with this, after downloading a vector image from a stock photo website, I ended up with a 9MB EPS file for which I do not have Adobe Illustrator to edit it.

LibreOffice offered to open it but failed, Inkspace and Scribus both also failed to open it. Only Ghostscript was able to preview it.

Finding this Q&A moved me forward.

I ended up doing these steps:

  1. eps2eps (for some reason this results in a "cleaner" EPS file)
  2. epstopdf
  3. pdf2svg works but produces an SVG file that takes minutes to load in Inkscape, and then forever to Ungroup because it has 300,000 objects from the root
  4. pdftocairo is my life-saver, it conveniently allowed me to crop the resulting PDF file to only the part that I am interested in resulting in SVG files that only has 10,000 objects which Inkspace can ungroup readily and I was able to edit it with ease. The command line looks like this:

    pdftocairo -svg -x 0 -y 0 -W 65 -H 70 o.pdf oo.svg

NOTE: The -x -y -W -H specify which region to crop from the big file (the unit is point for vector images).

Will

Posted 2010-10-12T01:39:20.220

Reputation: 111

0

For Mac OS X:

Prerequisetes: homebrew, xcode [tools]

  1. Install MacTeX first tug.org/mactex/mactex-download.html (2.5Gb download)
  2. Then you need to download texlua and install at your PATH minimals.contextgarden.net/current/bin/luatex/osx-intel/bin/
  3. Then download, unarchive and install at your PATH the epspdf.tlu tool tex.aanhet.net/epspdf/#releases
  4. Then brew install poppler pdf2svg

After all you can use the following sequence:

epspdf.tlu somegfx.eps somegfx.pdf
pdf2svg somegfx.pdf somegfx.svg

Works fine for me on Mavericks

fobdy

Posted 2010-10-12T01:39:20.220

Reputation: 1

0

I might be missing something, but I had not troubles with Image Magick:

convert this.eps to_this.svg

toto_tico

Posted 2010-10-12T01:39:20.220

Reputation: 471

1This did embed a png into a svg for me – 166_MMX – 2017-01-26T12:40:39.647

-1

require inkscape.

for i in *
do
    inkscape "$i" --export-plain-svg="$(echo "$i" | sed -e s/eps$/svg/)"
done

ilnanny

Posted 2010-10-12T01:39:20.220

Reputation: 1