Questions tagged [eps]

EPS is the common abbreviation for Encapsulated PostScript, a restricted version of PostScript meant to be embedded within other documents.

EPS is the common abbreviation for Encapsulated PostScript, a version of PostScript meant to be embedded within other documents. In this end, EPS is less of a programming language (where PostScript is), but more of an image format.

There are several restrictions placed on the EPS file format to make it suitable for embedding. These include:

  • The required use of a BoundingBox comment to describe the image's layout
  • The image must fit on a a single page
  • The file must not use any commands that affect global state (ex the printer)

The last point includes such operators as startjob and exitserver. A more complete list can be found here.

466 questions
113
votes
5 answers

Export a graph to .eps file with R

How do I export a graph to an .eps format file? I typically export my graphs to a .pdf file (using the 'pdf' function), and it works quite well. However, now I have to export to .eps files.
mStudent
  • 1,418
  • 3
  • 12
  • 21
37
votes
7 answers

Error including image in Latex

I am getting the following error while compiling my Latex File : ! LaTeX Error: Cannot determine size of graphic in tree.jpg (no BoundingBox). Why do I get this error ? What has this to do with an .eps file ? In fact, I could compile it fine with…
euphoria83
  • 13,314
  • 16
  • 58
  • 70
35
votes
2 answers

Inkscape command line: Need to convert SVG to eps without filter rasterisation

I need to convert an SVG to EPS and currently use inkscape to do this. To convert the SVG using the Inkscape GUI version, I simply open the svg, and "Save As" 'logo.eps', unselecting the "Rasterize filter effects" option. However, I want to…
user1901469
  • 1,059
  • 1
  • 9
  • 21
25
votes
6 answers

Convert .jpg to .eps format

How can I convert multiple .jpg files to .eps files on Linux?
Bhavneet
  • 297
  • 1
  • 4
  • 5
24
votes
5 answers

PNG to eps conversion massive increase in file size

I'm converting an image from .png to .eps and it hugely increases the file size. Can anyone explain why this is, and how to prevent it increasing so much. I'm using Unix convert: convert image.png image.eps Thanks for any help
Freddie
  • 1,657
  • 2
  • 15
  • 23
19
votes
1 answer

Cannot edit text in chart exported by Matplotlib and opened in Illustrator

I am exporting charts from matplotlib and editing them in Illustrator. It's great that I can edit the lines, but the text also comes in as lines, so I cannot change fonts, edit text, etc. I've exported as EPS, PDF, and PS with the same issues.…
mishaF
  • 6,582
  • 7
  • 27
  • 33
19
votes
3 answers

Matplotlib imshow with EPS

Is there a way to use PIL with matplotlib to place logos that are in EPS or SVG (or any scalable vector format) in order to place the logo on the graph and output the final file as EPS. Now I get a terribly rendered graphic because there is an .png…
Jared
  • 2,713
  • 10
  • 31
  • 59
17
votes
4 answers

PIL and vectorbased graphics

I run into several problems when I try to open EPS- or SVG-Images with PIL. Opening EPS from PIL import Image test = Image.open('test.eps') ends in: Traceback (most recent call last): File "", line 1, in File…
floqqi
  • 1,067
  • 2
  • 9
  • 19
16
votes
2 answers

High quality pdf to eps

I have always used pgfplot of latex to produce figures(.pdf format). Now, the journal in which I want to publish wants my figures to be in eps format. I tried converting pdf to eps using pdftops -eps fig.pdf fig.eps. But the resulting eps file is of…
Rhinocerotidae
  • 665
  • 1
  • 7
  • 22
15
votes
1 answer

How to use EPS files in a WPF or Silverlight application?

I have a few images in EPS format which I would like to use in my WPF application. Is this possible? If not, is there a way to convert them to XAML so I can use them directly in WPF? I don't have a budget for Expression Design or Adobe Illustrator,…
GraemeF
  • 10,997
  • 5
  • 50
  • 73
12
votes
2 answers

How can I use icon from .eps file and load them on my site?

I Have a filefile.eps that I downloaded from http://www.shutterstock.com/ , it looks like this : I want to export all those icons into its own piece so that I can use them on my site. I've tried doing this manually one-by-one it is very…
cyb3rZ
  • 43,853
  • 82
  • 251
  • 430
12
votes
1 answer

Converting text in Matplotlib when exporting .eps files

I'd like to be able to save Matplotlib plots and add them directly as vector graphics in Microsoft Word documents. However, the only format supported by Word and Matplotlib both is .eps, and the axis text is completely missing in Word if I try. I'll…
12
votes
3 answers

how to export the figure to color eps in matlab

I have a plot in Matlab needed to save the eps format. If I use the interactive menu in the figure to do so, everything is going all right, the exported eps is good. But if I use the following command saveas(gca, 'myplot.eps','psc2'); But if I do…
user1285419
  • 2,061
  • 7
  • 43
  • 61
11
votes
1 answer

gnuplot epslatex functionality in matplotlib

I am used to plot data with gnuplot, so I can easily put the figures in a LaTeX document, using the epslatex terminal. For example: file = "data.dat" set terminal epslatex set output "figure1.tex" plot file This way, two files are generated: one…
astrojuanlu
  • 5,095
  • 8
  • 36
  • 84
11
votes
4 answers

Write a figure to a file automatically in MATLAB

Does anyone know if it's possible to automatically write a figure out to a .eps file in MATLAB? I'm running a script that produces a large number of graphs, and it'd be nice if I didn't have to manually save each one!
Ed James
  • 9,985
  • 15
  • 68
  • 102
1
2 3
31 32