1824297 Members
4772 Online
109669 Solutions
New Discussion юеВ

postscript printing

 
Vanita Sawalkar
Occasional Contributor

postscript printing

I would like to take print from mozilla and Acrobat. I am giving command
#lp -d printername -o BSDo file
but it is printing only codes not proper printing.
3 REPLIES 3
Bill Hassell
Honored Contributor

Re: postscript printing

Mozilla and Acrobat only produce Postscript printer codes, not plain ASCII, so you must direct these jobs to a Postscript printer. The vast majority of printers know how to print ASCII (not Postscript) and extensions to ASCII like PCL. Many printers have the option to add a Postscript module and some printers only work with Postscript. There is no simple way to convert Postscript to ASCII or PCL without downloading a filter program.


Bill Hassell, sysadmin
Howard Marshall
Regular Advisor

Re: postscript printing

If your printer understands post script, your OK, all you have to do is send it to the printer using raw or postscript options instead of through the lp spooler filter

You will have to see which, if either, your printer interface supports. Check the options processing section of the file /etc/lp/interface/printername

If it doesn't, you may have to try to find an interface that does or perhaps even write one your self.

H
Bill Thorsteinson
Honored Contributor

Re: postscript printing

CUPS (Common UNIX Printing System) works
by filtering the printjob and generating
output for the approprite device.
It uses postscript as its standard
intermediate format. It will output
in the correct format for a wide variety
of printers.

It should solve your problem.