How do I send data to a modern printer? PDF, PostScript, HPGL, etc
I am trying to understand my options for communicating programmatically with a printer to get something printed from application software. In other words, what happens when the user tells my application they want to print something. I understand the way it worked in the "old days", and am trying to understand the more complex modern world. In the old days, there were two main types of printers: HP printers that understood HPGL and Postscript printers. So, you could send your print out in either of those two languages and the printer would convert your code to dots on the page. You could also embed a bitmap as binary data. For example, in HPGL (or PCL) you could give a command that would basically says "please print this bitmap, and here is the raster data" followed by a gigantic blob of binary data. Obviously if you did this the amount of data going to the printer would be a lot more and could choke the printer. Postscript had the same ability. If you printed text, you could tell the printer to print text "xyz" in font TimesNewRoman (or whatever) and the printer would calculate all the dots for you (which meant the printer had to know the font, or you had to download the font to the printer ahead of time). Now, as I understand the PDF format it is similar to Postscript, but it is not a language like Postscript and can only include "objects". So, for example, in Postscript you can make a loop and say "print this circle 50,000 times", moving its exact location around. In PDF my understanding is that you can't do this, you have to specify each and every circle as a separate "object". So, how do modern printers work? Can I still send HPGL/PCL to a printer? Are all printers now standardized on Postscript? If so, does that mean my best option is to generate Postscript and then send that raw to the printer? If I do send Postscript, do I have to tell the printer somehow that it is Postscript somehow? In Windows, I know the "standard" way to print, which is to query device capabilities and request a device context, then you can draw lines, shapes and text using Windows calls on that context. However, obviously this is extremely primitive compared to Postscript (or HPGL/PCL). Is there a way I can either communicate directly with the printer driver, or tell Windows: "here is my Postscript code, please pass it to the printer for printing"? | ||||
Actually, the truth is a bit more towards the middle ground in between the two extremes you described.
About some of your other points:
Don't assume that the term 'device context' does mean that Windows talks to the printer hardware directly in order to query the capabilities and request the device context. Sometimes it does, sometimes not. It always relies on some software called a 'printer driver' (which also controls which printer language to print data should be converted to). The printer driver may be able to query the device and ask "Do you have a duplexer unit? Do you have a stapling device?" and then generate the required device context itself for the job. Only a very modern approach, IPP Everywhere, developed by the 'Printer Working Group', will be able to get rid of most of what the olden model-specific printer drivers had to do, and will start to rely mostly on direct interrogation of the device before 'driverlessly' finalizing the exact print data to be passed to the physical device. But IPP Everywhere is not yet widely popular, neither with vendors, nor with admins, nor with users. But it will, once the PCs are forgotten and 95% of computing devices will be super-mobile...
| ||||
Since the OP didn't like my (or any other) original answer well enough to accept it he meanwhile even granted a bounty. Let me try to add whatever may have been missing from my original answer.
Even in the old days, there were more types of printers, or rather: page description languages... but PCL, HP/GL and PostScript may have been the most important for most people having to deal with printing technologies.
No, this did not work in all cases. This only works when the printer understands both these languages (what some of the more expensive HP models did). Some printer models did (even in the old days) understand only HP/GL. Some did only understand a specific version of
Yes, this works still the same:
If the device understands any combination of these languages, then you are free to send whatever it understands.
You are right, PDF (unlike PostScript), is not a programming language. It was a design decision, that PDF should not understand loop or conditional constructs (while PostScript does -- PostScript is even Turing-complete as a programming language, meaning: anything that is programmable at all, can be written as a PostScript program). So, while you can still define a circle (or even a very complex graphical object) only once as a PDF object:
But you are not right when stating "the PDF format ... is similar to Postscript". It is not. The PDF is derived from the same graphics model as PostScript had originally established. But that's about it. PDF keywords for operators are different. The structure of a typical PDF is completely different from a PostScript. Most importantly, PDF extended that graphics model it inherited from PostScript (plus, it added some other aspects for a typical electronic document). It evolved in several directions:
No. If anything, then more modern printers prefer PDF over PostScript (while they still may keep PostScript processing capabilities as a fallback option). But better ask your vendor, or study their marketing manuals.
That has never been your best option anyway, not even in the "old days"! After all, printing a more-complex-than-just-one-page job in most cases involved not just to ask for the number of copies, but...
These job features cannot necessarily be controlled by "raw PostScript". To control specific print job options with most PostScript printer models you had two ways:
PJL was originally invented by HP and used for PCL, but it was quickly adapted by other vendors for other printer languages. So nowadays you can use PJL header lines for most printers which can print PostScript, PCLxx, HP/GL or PDF, because it is commonly supported by most vendors. In this case the last PJL-line tells the printer what language the real job data is: PostScript, PCLxxx, PDF, HP/GL, whatever... by a statement like:
See last-but-one paragraph above if you pre-fix your job with a PJL header. For a pure PostScript printer, you'd probably rather use It would also help if you listed the printer models you have at your disposition.
This is actually how it works also with PostScript printers on Windows (well, the newer That is different from how it works on Linux, Unix or Mac OS X:
I do not understand why you should describe this as "extremely primitive" in this context.
As I said before: on Windows, an application typically does not generate its PostScript code itself [^1] if it wants to print to a PostScript printer, nor does it generate any other printer specific format itself (with the exception of the final device being an XPS-printer). Typically, it generates Or are you saying: "I have this ready-made PostScript file (generated elsewhere) which I want to print to a PostScript printer?" If so, then simply run a command like Having said that -- yes, there are at least two non-printer-driver ways which you could employ to query your print device:
You could even bye-pass Windows completely and use the
[^1] ...with the exception of some Adobe Programs like Acrobat, which can indeed generate their own PostScript. |
'컴퓨터관련' 카테고리의 다른 글
tightvnc, 원격데스크톱연결...펌 (0) | 2016.04.27 |
---|---|
dosbox serial settings...펌 (0) | 2016.04.26 |
printing from dosbox...펌 (0) | 2016.04.26 |
Whether DOSPRN is compatible with DOSBox, an x86 emulator with DOS?...펌 (0) | 2016.04.25 |
old dos program printer, pcl5...펌 (0) | 2016.04.25 |
[windows]
. Which version of Windows are you talking about? Server 2000? XP? 2003? Vista? Server 2012? Windows 8? 8.1? 10? RT? Mobile? CE? Phone? – Kurt Pfeifle Apr 7 '15 at 14:23