cheap postscript laser?

  • Thread starter Thread starter b.stolk
  • Start date Start date
B

b.stolk

Hi there,

Are there cheap (100-200 euro) postscript printers
on the market? (With USB connector).
I heard that some companies have there own PS
implementation, and avoid licensing, thus can offer
cheap PS?
What models are currently available?

thx

Bram
 
Hi there,

Are there cheap (100-200 euro) postscript printers
on the market? (With USB connector).
I heard that some companies have there own PS
implementation, and avoid licensing, thus can offer
cheap PS?
What models are currently available?

thx

Bram
 
Bill Martin said:
I'm curious why anyone cares about PS anymore?

Could be a number of things, mostly based around PostScript's abilities
as a full programming language and device independence.

For the OP, consider Ghostscript, which can be used to render PS to many
non-PS printers.
 
For the OP, consider Ghostscript, which can be used to render PS to many
non-PS printers.

Or, to actually answer the question, the Kyocera-Mita FS-920? £164.49
from http://www.misco.co.uk and elsewhere, around 240 euros, a little
over the budget. Best I've seen in the UK.

Cheers

Colin
 
Besides PS or PCL, what standard PDL would you recommend? It
should be platform independent, OS independent, and well documented.

Paul
 
Paul said:
Besides PS or PCL, what standard PDL would you recommend? It
should be platform independent, OS independent, and well documented.

Paul
----------

I have no recommendation. Platform independence I presume you mean so that you
can print the document to file on one platform and ship the file to another
platform to print out? In the rare occasions I'd want to do that I'd probably
just print to a PDF file.

Note that I'm not casting aspersions on anyone's choices. Just curious what
motivates choices for people with different computing problems than I have.

Bill
 
----------

I have no recommendation. Platform independence I presume you mean so that you
can print the document to file on one platform and ship the file to another
platform to print out? In the rare occasions I'd want to do that I'd probably
just print to a PDF file.

Note that I'm not casting aspersions on anyone's choices. Just curious what
motivates choices for people with different computing problems than I have.

Bill

It also means that people doing dual-os-boot or multi-os-boot can print
the same file from the same machine using a different os.

I still like the postscript printouts & display postscript had looked better
than truetype for my eyes.
 
I think the key point is to consider what would be the alternative. If
each manufacturer had it's own interface language, then driver
development would be much more difficult, and would require significant
coordination between the printer manufacturer and whoever writes the
driver (which needs to be integrated with the OS). A standard language
gives the OS vendor and the printer manufacturer a reference point. PS
fills this niche quite well (I suspect that some would argue that PCL
also does this job well).

In a world with N printer manufacturers, and M OS vendors, a common
language means you only need M+N solutions, instead of M*N solutions.

Back in the "old days", I wrote a graphics driver for an Anadex DP9501
printer. If I wanted to change to a different printer, I would have
needed another manual (to describe the different set of escape codes,
resolution, graphic data formatting, etc.), and I might even have to
re-architect the driver (e.g. does the printer use polar coordiantes
instead of cartesian, or is it vector vs. bit-mapped, or ???). By
contrast, PS can describe a complex image in a device independent
manner.

The "flies in the ointment" with PS are that different printer features
(like tray source selection, duplex, etc.) can require specialized
code. However, this is a small item, compared to the general case of
describing a page. Of course, these issues must be solved for any
solution.

Hope this helped,
Paul

BTW - No aspersions were received :-)
 
Back
Top