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
4
votes
1 answer

Combining information of tex and eps file generated via gnuplot to a single figure file?

I use gnuplot with epslatex option to generate figure files for plotting purposes (like here). Via this method you get 2 files corresponding to same figure, one tex file and one eps file. The figure information is in eps file and font information is…
dexterdev
  • 537
  • 4
  • 22
4
votes
1 answer

What is the exact meaning of %%BoundingBox and %ImageData in an EPS file

ImageMagick reports the following size for this file: 03072004.TIF EPT 1251x403=>1252x401 1252x401+0+0 16-bit ColorSeparation DirectClass 2.008MB 0.000u 0:00.000 I cannot figure out how the dimension 1252x401 is calculated. I assumed that the…
rmuller
  • 12,062
  • 4
  • 64
  • 92
4
votes
2 answers

.NET Open Source Contour Plotting

I am looking for an Open Source .NET Library (or wrapper to a library) that will create contour plots from a set of values along a grid/mesh. ZedGraph is the closest thing I could find (http://zedgraph.org/). It would also be great if it could…
ccook
  • 5,869
  • 6
  • 56
  • 81
4
votes
1 answer

How to keep margins when converting PDF to EPS outlines using Ghostscript?

I'm using Ghostscript to convert a PDF document into an EPS file. My goal is to remove the textual information (while keeping the vector outlines of the text intact) in the PDF. I am doing so by converting to EPS and then converting it back PDF.…
user31039
  • 6,149
  • 4
  • 14
  • 9
4
votes
2 answers

dvi generation: no bounding box

I wrote a research paper in latex and generated pdf using Kile. Now I need a dvi file also. Kile's quick build process does not give a dvi file, but its 'Latex' compile process does. So I tried to compile the document, and it gave errors for…
Akshey Jawa
  • 447
  • 1
  • 9
  • 19
4
votes
3 answers

LaTeX document and BoundingBox of an eps file created by matplotlib

I am having a problem in including an eps file generated by matplotlib into a LaTeX document. The size of the figure does not seems to be recognized correctly, and the caption overlaps with the figure. Please see the image below. This is the image…
norio
  • 3,652
  • 3
  • 25
  • 33
4
votes
2 answers

How to save plots as colorful .eps in octave

I am using win7 and octave 3.6.4, when i generate a plot with octave and save as .eps its colors go away. For example : clf(); surf(peaks); generates following graphic But when i run the following codes seperately saveas (1,"test.eps") or print…
user1772257
  • 323
  • 2
  • 4
  • 14
4
votes
2 answers

How to change background color of an eps file while converting it to jpeg or png

I am converting eps (Encapsulated PostScript) files to jpeg files with ghostscript. A sample command I use is: gswin32.exe -sDEVICE=jpeg -dJPEGQ=100 -dNOPAUSE -dBATCH -dSAFER -r600x600 -dGraphicsAlphaBits=4 -dUseCIEColor -dEPSCrop…
Serhat Ozgel
  • 23,496
  • 29
  • 102
  • 138
4
votes
1 answer

eps cmyk color matplotlib output

I need to output my plots in EPS with the CMYK color space. Unfortunately this particular format is requested by the journal I am submitting my work to! This discussion was the only one I could find that has addressed the issue but it is more than…
makhlaghi
  • 3,856
  • 6
  • 27
  • 34
4
votes
1 answer

Preview OSX bug (?) converting bezier curve in .eps file to .pdf

I have a small .eps file which uses bezier curves with a thick linewidth to achieve a certain effect. This file displays as I expect it to in gv, but when I convert it to a .pdf (eg with ps2pdf or by opening the file with Preview on a Mac running…
4
votes
0 answers

auto coords in lemon .eps exporting

In Lemon tutorial all examples specify coords when drawing graph: graphToEps(g,"graph_to_eps_demo_out_1_pure.eps"). coords(coords). title("Sample .eps figure"). copyright("(C) 2003-2009 LEMON Project"). run(); Is there any…
remdezx
  • 2,939
  • 28
  • 49
4
votes
5 answers

disturbing artifacts in pdf

I'm struggling with a problem when making plots with filledcurves. Between the filled areas, there seems to be a "gap". However, these artifacts do not appear on the print, but depend on the viewer and zoom-options. In Gnuplot I use the eps…
Raphael Roth
  • 26,751
  • 15
  • 88
  • 145
3
votes
2 answers

How to use Prolog to print a PDF file

I am a newbie to Prolog and was just wondering if there is a way to print something to a pdf file.
Risshuu
  • 101
  • 1
  • 3
  • 12
3
votes
2 answers

Getting rid of interpolation/aliasing in EPS export of matlab?

I have a 2D color-map plot created with imagesc and want to export it as a .eps file using print -depsc. The problem is that the "original" image data is from a rather small matrix (131 x 131). When I view the image in the matlab figure window, I…
cadolphs
  • 9,014
  • 1
  • 24
  • 41
3
votes
3 answers

How do SVG/EPS (vectors) clip a path by another path?

I try to understand how SVG programs (like browsers) draw a shape by the given paths. I struggle to understand how a path is drawn and one clips part of a shape. For example, consider the letter Å, and A with a top ring. The SVG code is like
Googlebot
  • 15,159
  • 44
  • 133
  • 229