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.

487 questions
0
votes
1 answer

Saving an .eps file with reduced number of colors

The aim is to produce an .eps file which is not coded with RGB 8-bits per channel, but less (to save diskspace). To limit number of colors I used in Gnuplot: set palette maxcolor XXX which worked and reduce number of colors on the high-resolution…
Maciek
  • 762
  • 6
  • 17
0
votes
0 answers

Imagemagick does not convert eps file when exectingfrom php

I try to convert a eps file to a png in PHP using Imagemagick. exec('convert /tmp/test.eps /tmp/test.png'); // Won't create any file!? exec('convert /tmp/picture.png /tmp/picture_copy.png'); // This works But, if I try to convert the EPS in a…
Egon Schmid
  • 61
  • 1
  • 3
0
votes
1 answer

ghostscript distroy gradient eps file in outline mode

I have two EPS files. One is with gradient and other is without. When I convert my EPS file (NOTE: without gradient) to PDF using ghostscript. If looks correct in outline mode. But when I convert EPS file with gradient via ghostscript, it black…
0
votes
1 answer

want eps file and text into single compound path using ghostscript

what I want is to add eps file into temporary ps file which has text written, then I convert my ps file to eps file using ghostscript, but when I see my eps file in AI outline mode, I see extra square around my eps file which is size box, which…
0
votes
1 answer

Gnuplot export eps file

I have a ton of datapoints - too much for excel, etc to handle, so I'm using gnuplot. The problem is that I want to include the graph in LaTeX later. I know that I can take a PNG screenshot and include that, but I would rather export an EPS file.…
inspectorG4dget
  • 110,290
  • 27
  • 149
  • 241
0
votes
1 answer

EPS in Ghostscript as background

We want to mix an eps file with a ghostscript file. The eps file is our formular style and the ghostscript is for the texts. After this we create a pdf with the new file. Whenever we do this, we get 2 letters, one with the text and one with the…
0
votes
1 answer

Rescale EPS and convert to PDF

I have an EPS file generated by MATLAB. When I convert it to PDF using either ps2pdf or ghostscript, parts of the EPS goes outside the page boundaries and are hence lost(as if the EPS was bigger than the set page width) Converting the EPS to tiff…
WYSIWYG
  • 494
  • 6
  • 23
0
votes
1 answer

Error displaying the character Delta in postscript device

I have a legend that contains the character Δ and I am unable to produce publication quality EPS Figures. PNG and TIFF runs fine. Is this a bug? Is there any quick workarround? I am on Ubuntu Linux 64-bit, running 64 bit R…
ECII
  • 10,297
  • 18
  • 80
  • 121
0
votes
0 answers

Can't import .eps vector graphic in Mathematica 8

I'm on Mathematica 8.0.4.0 for Students and despite the fact that $ImportFormats returns both eps and pdf, whenever I try to import either of them I just get $Failed. I've tried Insert > Picture > From File..., Drag and Drop and Import["filepath"]…
0
votes
1 answer

How to combine EPS images?

So I am working on a mapping project. We have maps near completion -drawn using R base graphics (i.e. plot() ) I am outputting my maps in eps format to best suit publication. However the mapping agency who kindly gave us the data require us include…
user2498193
  • 1,072
  • 2
  • 13
  • 32
0
votes
0 answers

How to use Icons that come in the format of EPS

i'm not much of a front end developer but got a set of icons that came in an EPS format...What's the best way to use these fonts on a website? I have a big sprite I'm using but these icons won't convert to png in photoshop... Any thoughts on how to…
Justin
  • 4,922
  • 2
  • 27
  • 69
0
votes
2 answers

R .eps export and import into Word 2010

I would like to know how I can open .eps files from R in the word 2010. Here is an example of my plot. postscript("FIG1.eps", height = 6, width = 6, horizontal = FALSE, paper =…
Mitra Rahmati
  • 291
  • 4
  • 10
0
votes
2 answers

How can I import .eps in Mathematica without losing the text?

I am trying to import a histogram produced by Stata as an .eps file into Mathematica, but it does not display axes' labels. That is, for some reason, Mathematica does not import .eps as but rather transforms it. How can I avoid that? As of now, I…
P.Escondido
  • 3,373
  • 6
  • 23
  • 29
0
votes
0 answers

Multiple Venn diagrams in one ".EPS" file in R

I want to have two (or more) Venn diagrams in a ".eps" file. I used this post by fridaymeetssunday, which refers to this post by mnel, and I just changed the code from "pdf" to "eps" by postscript. The problem is, when I run the code and open the…
hora
  • 845
  • 5
  • 14
  • 25
0
votes
0 answers

How can I convert the colorspace of an EPS file?

Is it possible to convert the colorspace of an EPS file from RGB to CMYK or vise versa? I'm looking to create another EPS file with all the fill/stroke/etc. color values converted to the new colorspace equivalent.
Alexander Rolek
  • 933
  • 2
  • 12
  • 18