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

How to generate an EPS image from a .mdl Matlab/simulink file

I'd like to generate an EPS image from a Matlab/Simulink file ".slx". I use the following command but it generate a file that can't be read as a image: print -sfile -deps -r300 file.eps I tried the same thing from a figure (not a model .mdl) and it…
mourad
  • 369
  • 1
  • 3
  • 9
0
votes
1 answer

How to measure Apache Flume EPS?

I'm beginning with Flume-NG, and for initial hardware setup I want to measure Flume's performance(EPS) on existing test machine with linux. Just an agent with simple 'Syslog to Hbase' flow is running in the machine and I know how to inject heavy…
ebenezer
  • 3
  • 2
0
votes
1 answer

EPS Returning CMYK result for all type of color format

I am processing all *.eps files using ImageMagick/Ghostscipt and get the color profiles of each image and display the result. But I am getting same result as CMYK for grayscale, RGB, CMYK. I don't know where I'm doing a mistake or which property…
newbeee
  • 75
  • 1
  • 12
0
votes
1 answer

Function plotting library for java

I need to plot a 2 argument function (so I need a 3D plot) - ideally Mathematica style with nice colours for different values, which I will then use in a Latex document. I would prefer to get a vector output (i.e. EPS), so that it prints nicely.…
Grzenio
  • 35,875
  • 47
  • 158
  • 240
0
votes
0 answers

Make a portion of a transparent svg opaque

I have an eps file that I converted into an SVG. It's a free-form object with many lines/fills/strokes/etc with a transparent background. I'm overlaying an additional div over this SVG that has a color hue with transparency so this hue changes the…
Mark Shust at M.academy
  • 6,300
  • 4
  • 32
  • 50
0
votes
0 answers

gnuplot+latex+postscript eps enhanced terminal: key text misaligned

i am compiling some eps graphs with gnuplot using the following terminal line: set terminal postscript enhanced eps color dashed rounded dl 4 "Times-Roman" 24 An example: p 'file1' u 5:6 w p t 't=0.5 ms',\ 'file2' u 5:6 w p t ' 1 ms',\ …
marco
  • 569
  • 1
  • 4
  • 19
0
votes
1 answer

Why my axis texts looks so bad in Matlab when I use eps format?

As you can see in my screen shot (the picture quality has changed since I changed the format to import it here but texts looks as bad as this in Word), when I import my eps figures to word my figures text looks bad. It only happens in Windows PCs (I…
Fred
  • 223
  • 3
  • 14
0
votes
1 answer

Is it possible to use EPS file (created with eps2write) in EndPage procedure?

For testing purposes, let's draw some meaningless rectangles: gswin32c -q -o f.pdf -sDEVICE=pdfwrite -c "<>setpagedevice 0 0 595 842 rectfill showpage" + gswin32c -q -o f.eps -sDEVICE=eps2write -f f.pdf And ps.ps file: << …
user2846289
  • 2,185
  • 13
  • 16
0
votes
2 answers

Gnuplot multiplot positions all text incorrectly in epslatex terminal

I am trying to use the multiplot feature of gnuplot to make a inset graphic on the main plot. I can generate the plot exactly as I want with term='wxt' except for the axis labels, which require LaTeX formatting for generating the desired symbols. …
Jim Parker
  • 1,095
  • 11
  • 16
0
votes
2 answers

Unable to download .eps file programmatically

I have created a code from which the user is able to download the file. The files which will be downloaded will be used for image files only. My code is as per below. try { System.IO.FileInfo fileInfo = new FileInfo(file.Name); // replace…
Mohemmad K
  • 809
  • 7
  • 33
  • 74
0
votes
0 answers

Issue with uploading .eps file

I can't figure out anything I'm missing. When I try to upload a eps file, I have got error, but the pdf and png files can able to upload. if (isset($_FILES["picture"]["name"])) { $allowed = array('pdf', 'png', 'eps'); $ext =…
Lucky13
  • 11,393
  • 7
  • 25
  • 36
0
votes
0 answers

Retain subscript when converting to .eps

My subscripts in the axis tick label get messed up when I create an .eps-file. I have created subscripted axis-tick labels for my figure by adding e.g. char(8321) to my axis tick label strings. Everything works fine and the subscript appears in the…
fixingstuff
  • 559
  • 2
  • 7
  • 18
0
votes
1 answer

SVG to EPS using Magick.NET

I am trying to find a way to convert an SVG image to either an EPS file or a PDF file using Magick.NET. Magick.NET is the only library I have found which claims to offer what I need. I have created a console app and added the Magick.NET Nuget…
jcvandan
  • 14,124
  • 18
  • 66
  • 103
0
votes
2 answers

Matlab figure contents lost while saving as eps/pdf

I have tried most of the usually used options (print(figr, '-depsc', 'cross_corr.eps');) to save a matlab figure as eps/pdf but each time I do it, the figure contents are saved partially and perhaps one quarter of it is lost. I have shared the…
Martin
  • 3
  • 2
0
votes
1 answer

MatLab Eps Print Webdings interpreter

So recently I decided to not use the standard markers that Matlab provides and use my own via: a set of fonts including Webdings or WingDings. I make a standard scatter plot, and plot the text (in wingdings), using the text command, over the…
Sean
  • 133
  • 1
  • 8