Path: utzoo!attcan!uunet!samsung!munnari.oz.au!csc!mag852 From: mag852@csc.anu.oz Newsgroups: comp.lang.postscript Subject: Re: ps to epsf? Message-ID: <2334.26930e65@csc.anu.oz> Date: 5 Jul 90 09:54:45 GMT References: <2414@acorn.co.uk> <1990Jun23.184530.1326@cbnewsl.att.com> <184@heaven.woodside.ca.us> <1363@chinacat.Unicom.COM> <1990Jun27.201333.10418@utzoo.uucp> <3439@adobe.UUCP> <268C0233.50F0@intercon.com> <1095@io.tegra.COM> <6327@helios.TAMU.EDU> Organization: Computer Services, Australian National University Lines: 24 In article <6327@helios.TAMU.EDU>, klf1305@che_sun1.tamu.edu (Kelly L. Fergason) writes: > > Does anyone know how to convert a postscript file to encapsulated > postscript? We have heard of Smart Art, a Mac program which will do it, > but we are looking for other alternatives first. > > Thanks, > > > Kelly Fergason There are two sorts of EPS files, displayable and non-displayable. It is very simple to convert any postscript file into a non-displayable EPS file. These can still be imported into page composition software etc. To achieve this simply add two lines to the top of your postscript file. %!PS-Adobe-2.0 EPSF-1.2 %%BoundingBox: 0 0 612 792 The numbers in the second line are variable depending on the limits of the code. The above example is for a full 612-by-792 point (8.5x11 inch) image. Mark Greenaway (mark@cres0.anu.oz.au)