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

byte[] to .eps image

Possible Duplicate: Converting .EPS to Image in C# How to convert byte array to .eps image in C#? I have a code which works with graphic images(.jpg, .png...) but it throws an argument exception when I'm converting to .eps format. MemoryStream ms…
reederz
  • 983
  • 1
  • 12
  • 29
0
votes
1 answer

matlab: about eps range error

I have a question about eps in matlab. I need to know if eps, rounding error, is a error defined like a uniform error and if it is defined as a half range or full range? Thank you.
Vi_gg_Vi
  • 33
  • 2
  • 5
-1
votes
1 answer

How to Convert PDF to PS/EPS using Java?

I'm trying to convert PDF to eps using the ghost4j library however I do not get the expected result. PDFDocument document = new PDFDocument(); document.load(new File("input.pdf")); fos = new FileOutputStream(new File("rendition.ps")); PSConverter…
-1
votes
1 answer

Illustrator / Photoshop Color Profiles

I found out recently that I can get my colors 1:1 for print, in photoshop, if I assign the profile: Photoshop 5 Default CMYK However, at this point Im doing a different project that needs to be saved in EPS form from illustrator. I can get the jpg…
mike
  • 749
  • 2
  • 13
  • 24
-1
votes
1 answer

converting .eps file to .gif - size issue

I've been trying to convert some .eps files to .gif. The .eps files are pretty wide. When I use ps2img to convert them the .gif files which are produced contain only part of the image. The same problem occurs when I use 'xv' to open the .eps file…
-1
votes
1 answer

Programmatically setting .eps files to CMYK (as opposed to RGB)

We have an app where we need to export files from vector files from Inkscape to .eps to be used for printing. While this is working fine, our printers have complained that they are receiving the files in RGB mode instead of CMYK. Is there a way to…
Walker
  • 128,495
  • 27
  • 68
  • 94
-2
votes
1 answer

How to open eps file?

I want to open eps file from my R result. Below is my code for the generating eps file. Is there a way of opening the file in R ? or How can I open it? Please let me know. if(iter%%nsave==0){ # Save MCMC output blocknow=iter/nsave …
user3901071
  • 21
  • 1
  • 3
1 2 3
32
33