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 draw EPS data on NSView

I'm struggling with the problem to draw an eps file on a NSView. When I first load the eps file from a file and draw it with drawInRect: the image is displayed correctly. However, the image will not be drawn when I load it from an archive file. I've…
cocoafan
  • 4,884
  • 4
  • 37
  • 45
0
votes
1 answer

eps attachment parsing with javamail

Is any special handling required to parse the eps attachment in the eml using javamail I dont have any issue other types of attachments. only eps attachment gives problem When i send the eps attachment using outlook 2010 it converts encoding from…
amponvizhi
  • 51
  • 1
  • 3
0
votes
3 answers

Illustrator script for exporting as eps

I was asked to create a small script for Adobe Illustrator CS, which would automatically export project as eps with specific options. Anywho, I was looking into it this whole morning and came to a brick wall. In adobe's scripting reference I found…
MrMag
  • 9
  • 1
  • 3
0
votes
3 answers

Handmade pdf files

It used to be, and remains, possible for one's program to output (encapsulated) postscript by simply writing some lines in a text file. To draw an 'x' one might for instance write %!PS %%BoundingBox: 0 0 100 100 newpath 100 0 moveto 0 100 lineto…
Calaf
  • 10,113
  • 15
  • 57
  • 120
0
votes
1 answer

Is there a known way (class) to convert .ai files to .eps in PHP?

If not, do you think it would take an arm and a leg to create such a class?
Mihai
  • 68
  • 6
0
votes
1 answer

Can't generate font from AIGA symbolset

I'm collecting different public-domain pictograms for a project of mine. I download some symbolset, possibly transform it from EPS to SVG using inkscape, and generate a font from them using SVG-icon-font-generator. This procedure led to satisfactory…
linski
  • 5,046
  • 3
  • 22
  • 35
0
votes
3 answers

How to prevent ps2eps from rotating pages

I want to convert some single page postscript files to eps. They are from the same source multiple page ps file, extracted with psselect. Some of the pages (the short ones) are rotated (by 90° to the left) with respect to their original orientation…
highsciguy
  • 2,569
  • 3
  • 34
  • 59
0
votes
2 answers

Missing label when converting eps to pdf

I use the following gnuplot script in order to plot a data file reset unset key set size 1,1 set xrange [-10.1:11] set yrange [-45:45] set xlabel 'x' set lmargin 6 set label 1 "~x{0.7.}" font "Helvetica, 20" at graph -0.1, graph 0.5 set xtics…
Vaggelis_Z
  • 221
  • 3
  • 15
0
votes
1 answer

SVG exported with Adobe Illustrator to SVG not displaying well in Raphael.js

I downloaded the Adobe illustrator file from http://all-free-download.com/free-vector/vector-misc/animal_character_illustrations_58511.html and opened in with Adobe illustrator, I then exported it to SVG and tried to display it on an Html page with…
DorR
  • 645
  • 1
  • 9
  • 22
0
votes
1 answer

phpqrcode image not recognized as an active url

I made a PHP script that takes severall URLs from a database and outputs QrCodes using the phpQrCode Library. Qr codes are output in an eps file and printed on handouts by our printing services. This much is working fine, but some of the QR codes…
0
votes
1 answer

Have Ghostscript 9.06 rasterizing EPS files with same colors as of 8.70

For an online design application I'm using Ghostscript to convert some kind of files into PNG and/or PDF (depending on user request). Consider this EPS file: http://designer.realtimedesigner.com/images/1/cliparts/99010.eps With GS 8.70 I used to…
0
votes
1 answer

Length of line segments in gnuplot's postscript output

I plot datafiles (i.e. timeseries) with gnuplot and the postscript eps enhanced terminal. When I'd like to modify these graphics with inkscape, e.g. changing the color of the lines, it's tiring because the lines are split to segments with 100 points…
Raphael Roth
  • 26,751
  • 15
  • 88
  • 145
0
votes
1 answer

How can I copy an eps file to clipboard/pasteboard?

My program creates adobe ai or (eps) file and I want to copy it to pasteboard. I copied sample ai object in adobe illustrator and Inspect pasteboard by "pasteboard inspector": My code is below but copy nothing to pasteboard: void copyEPS(CFDataRef…
mh taqia
  • 3,506
  • 1
  • 24
  • 35
0
votes
1 answer

Apple Script to extract cropped eps images and save new images in a separate folder

I am wondering if anyone has an AppleScript to extract cropped EPS files from an INDD CS5/CS6 document and save the cropped images into a new folder. I have seen a lot of posts for CS3 and tried to adjust the AppleScript to work for me but cannot…
Ingrato
  • 1
  • 1
0
votes
1 answer

How to parse EPS to get a mesh-kind data?

My goal is to import EPS file to the app(language is C++) to create a 3D object. I am looking for some library/tool which will help me to parse EPS to a list of primitives(circles, lines, paths, etc. like in SVG) or even contours array. I've already…
v-odin
  • 53
  • 6
1 2 3
32
33