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

Plus/minus symbol in gnuplot?

I'm generating .eps figures in gnuplot for inclusion into papers typeset with LaTeX, using set terminal postscript eps enhanced "Helvetica" 14 This generally works perfectly, but i'm now trying to put together a figure using a label that includes…
strmqm
  • 1,274
  • 1
  • 9
  • 17
6
votes
3 answers

Is it possible to create .eps files with ggsave using the Cairo graphics device?

Edit: This page provides the code: https://www.andrewheiss.com/blog/2017/09/27/working-with-r-cairo-graphics-custom-fonts-and-ggplot/ ggsave("test_cario.eps", device=cairo_ps) ggsave("test_cario.pdf", device=cairo_pdf) However, I am wondering…
00schneider
  • 698
  • 9
  • 21
6
votes
4 answers

How to programmatically manipulate an EPS file

I am looking for libraries that would help in programatically manipulating EPS (Encapsulated PostScript) files. Basically, what I want to do is following: Show / Hide preexisting layers in the EPS file (toggle them on and off) Fill (color) named…
Daren Thomas
  • 67,947
  • 40
  • 154
  • 200
6
votes
1 answer

Gnuplot script to output eps or svg - how to write?

I have the following gnuplot script: set autoscale unset log unset label set xtic auto set ytic auto unset title set xlabel "Number of clusters" set ylabel "Accuracy of classifier (%)" plot "cluster.dat" using 1:3 title "PART" with lines, \ …
Koz Ross
  • 3,040
  • 2
  • 24
  • 44
6
votes
3 answers

How to reduce the EPS-format output of gnuplot?

I have a big amount of data from which I would like to create a scatter plot and include it in my LaTeX document. I use gnuplot to generate the scatter plot with the epslatex output format to be able to import the data to my LaTeX document…
MikeL
  • 2,369
  • 2
  • 24
  • 38
6
votes
2 answers

How to adjust BoundingBox of an EPS file?

I want to crop main area of a PS or PDF file to create an EPS file without white space. Commands of ghostrcipt, ps2pdf, epstools can crop the main drawing out of the document file. The problem is that they only crop in its original form, but I want…
Googlebot
  • 15,159
  • 44
  • 133
  • 229
5
votes
1 answer

Manipulating EPS/AI files in .NET

I am trying to automate the manipulation of Illustrator (EPS/AI) files. I need to automatically generate EPS files online and send them to a printer. I have a template AI file into which I want to insert a unique barcode. The AI file is simple…
richie
  • 1,086
  • 10
  • 12
5
votes
3 answers

Convert EPS/PDF to JPEG/PNG?

I need to be able to take EPS and PDF's and convert them to JPEG/PNG on the fly to display on a website - using .net code. I used ADC PDF from WebSupergoo for this like 3 years ago, and it worked fine - but some other and better options could easily…
Kjensen
  • 12,447
  • 36
  • 109
  • 171
5
votes
5 answers

batch convert and crop postscript to pdf

I know barely enough to survive in this digital world. I have many one-page postscript files (graphs/images) I wish to convert to pdf and automatically crop to a narrow box. I'm on windows right now (I do use linux too, so don't hesitate to post…
PatrickT
  • 10,037
  • 9
  • 76
  • 111
5
votes
1 answer

How to edit eps file to change fonts?

I have some eps files that I'm using as figures in a paper, and I'd like to change the fonts used. I need to convert all "Type-3" fonts to "Type-1" fonts. Is there a way I can edit the eps files directly and change the fonts used?
Big Dogg
  • 2,564
  • 5
  • 21
  • 22
5
votes
3 answers

Optimizing size of eps/pdf files generated by Mathematica

How to optimize size of an eps or pdf file generated by Mathematica? It is common that the file size is 50-100x bigger that it should be (an example below). For some applications (e.g. putting a figure in a publication, or even more - putting it on…
Piotr Migdal
  • 11,864
  • 9
  • 64
  • 86
5
votes
1 answer

Adding metadata in EPS file using Java

I'm currently reading and writing .EPS file to manipulate/add metadata (Keywords and Tags) in the file. PS: File encoding is Windows-1251 or Cp1251 -Russian- I'm reading EPS file like this: (String lines; is a global variable) try (BufferedReader br…
user1773603
5
votes
1 answer

R does not recognize GhostScript to embed eps plots

I am trying to embed a .eps file for a journal publication requirements. I create my plot using ggplot2: p=ggplot(data=sim, aes(x=TIME,y=DV,group=ID))+ theme_few()+ geom_point(aes(shape=as.factor(SEASON2)),size=3,fill="white")+ …
5
votes
1 answer

Can matplotlib generate EPS10 output?

EPS10 supports transparency and layers in vector graphics. Can matplotlib generate EPS10 files?
quant_dev
  • 6,181
  • 1
  • 34
  • 57
5
votes
1 answer

How can I include a .eps figure within a Tikz simple flow chart?

I would like to create a simple flow chart in latex with the TikZ package similar to the following example http://www.texample.net/tikz/examples/simple-flow-chart/ However I would like to include figures (a time series plot created in R, as eps or…
Janvb
  • 1,290
  • 2
  • 16
  • 17
1 2
3
32 33