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
3
votes
2 answers

I don't have color on my .eps figure using gnuplot

I want to trace some curves with gnuplot. I recently change my computer and now I have a MacOSX 10.9.5 In my other computer, colors appeared in my .eps figure, but with my Mac not anymore, and an error message appears : "· Times not found, using…
B_runo
  • 159
  • 1
  • 10
3
votes
2 answers

Ghostscript: convert PDF to EPS with embeded font rather than outlined curve

I use the following command to convert a PDF to EPS: gswin32 -dNOCACHE -dNOPAUSE -dBATCH -dSAFER -sDEVICE=epswrite -dLanguageLevel=2 -sOutputFile=test.eps -f test.pdf I then use the following command to convert the EPS to another PDF (test2.pdf) to…
Changwang Zhang
  • 2,467
  • 7
  • 38
  • 64
3
votes
2 answers

Matlab saves figure to a very large eps file for seemingly no reason

I use LaTeX for most of my writings and always uses eps files -- that Matlab can create. There wasn't any problem but, for a new case I started studying Matlab generated a 95MB file (and eps2pdf fails to produce a pdf with that) This question would…
Godzy
  • 157
  • 1
  • 10
3
votes
0 answers

MS Word does not show text in EPS created with matplotlib

I created a EPS file with matplotlib 1.4.2 and python 2.7. But when I paste the file in Microsoft Word (Word 2013), it doesn't show the text in the figure. However, when I convert the word doc to PDF file, the text is come back. I also tried…
Henry
  • 31
  • 1
3
votes
2 answers

Scale down a big EPS picture without edgily result and with clipping path

I got an EPS file (3854x8000) and I want to scale it down, because this is way to big, but without losing the clipping path. (If it is possible -- I tried to scale it down by using ImageMagick: convert picture.eps -resize 768x1024…
mht
  • 103
  • 1
  • 7
3
votes
1 answer

How to setup the 'renderer'?

I want to save a figure in EPS format with: saveas(gca, 'test.eps','epsc'); The figure is plotted with 'contourf' and a self-defined functions for plotting arrows. (I am using a package written by others, and I am not totally familiar with all of…
Eren
  • 159
  • 1
  • 12
3
votes
1 answer

Ghostscript: When converting EPS to PNG, sometimes quality fails

I am trying to convert some larger EPS images to PNG files using Ghostscript. I found a command, which normally does it quite well. gs -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dEPSCrop -dAlignToPixels=0 -dGridFitTT=2…
3
votes
1 answer

Matplotlib savefig to eps ignores visibility=False

I'm trying to save a streamline plot as an EPS, and then convert it to PDF using epstopdf, since this gives a much smaller filesize. I use multiple subplots that share their x and y axis. I add one overarching subplot, so I can easily add a xlabel…
Wouter
  • 31
  • 2
3
votes
1 answer

EPS created with matplotlib does not show text correctly

I have a Font problem in eps-files from matplotlib. The font show correctly in die eps file, but when I paste the file in Microsoft Word, it doesnt Show the text (Labels, ticks, title...) I already tryed to change the maplotlib.rcParams because that…
Hubschr
  • 1,285
  • 6
  • 18
  • 35
3
votes
3 answers

create pdf from python

I'm looking to generate PDF's from a Python application. They start relatively simple but some may become more complex (Essentially letter like documents but will include watermarks for example later) I've worked in raw postscript before and…
Jetblackstar
  • 249
  • 2
  • 12
3
votes
2 answers

Can't save figure as .eps [gswin32c is not recognized]

I'm using Enthought Canopy with PyLab(64-bit). For my report I need to use Latex (XeLaTex) and the plots are done with matplotlib. To have an first idea I just copied the second example from http://matplotlib.org/users/usetex.html and compiled it.…
Red Pencil
  • 121
  • 1
  • 6
3
votes
2 answers

how to trim eps or pdf without increase size

I work a lot with latex and for my images i use the eps and pdf formats. When I create a figure I often need to trim it, because I want to get rid of white margins all around the pic. At the moment I'm using GIMP, import the figure and autotrim the…
Nicholas
  • 1,915
  • 31
  • 55
3
votes
2 answers

Issue with font when exporting MATLAB figures to .eps

I am currently using the excellent script *export_fig* to export figures from MATLAB for use in a journal paper I am writing. This file works perfectly for raster images (bmp, tiff, etc) but I really want to export my figures to a vector format. I…
Sanka
  • 177
  • 1
  • 4
3
votes
2 answers

Writing EPS images into PDF using FPDF with PHP

Im using FPDF library to generate PDF files and my requirement is to write .eps/.ai files into PDF file, for that Im using EPS/AI extension for this FPDF(http://www.fpdf.de/downloads/addons/1092/) but when implement it in my code it is showing Error…
user2398514
  • 137
  • 4
  • 17
3
votes
1 answer

Matplotlib: poor resolution of PDF figures with hatching

When using Matplotlib to generate figures with hatching (e.g. pie, bar, bubble charts), I'm having some trouble getting decent resolution out of the PDF version of the figure. Saving as EPS is fine, but as soon as I use epstopdf or MPL's…
William Menz
  • 131
  • 1
  • 8