Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AIX: Postscript to PDF 1

Status
Not open for further replies.

AIXtexas

Technical User
Feb 5, 2002
80
US
Is there any available AIX software to convert postscript to PDF? We currently use GhostScript, however it fails on large documents (2000 pages plus).

Thanks,
Shane
 
Hi AIXtexas,

There is 2 other programs that you could try.

1_ pdftops from xpdf from "AIX toolbox for Linux"


2_ Install acroread from Adobe.
- I use this command to produce postscrit file:
- if you have graphic adapter

cat file.pdf | acroread -toPostScript -size letter > file.ps

cat file.pdf | acroread -toPostScript -size letter | lp -d[print queue] -c -n

- if you do not have a graphic adapter, you will want
to install Xvfb

cat file.pdf | acroread --display :1 -toPostScript -size letter > file.ps

cat file.pdf | acroread --display :1 -toPostScript -size letter | lp -d[print queue] -c -n

Note: I have only one problem with these pdf to ps
conversion and if anyone can solve it i will
appreciate:

I can not select the paper size on a HP 5000n
printer. I always get the first tray.

Have a nice day
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top