| Author |
Print to Image
|
abu alfouz
Ranch Hand
Joined: Nov 20, 2006
Posts: 44
|
|
Hi all,
I need a progrsm or API that I can us to print from any application to amge. For example, I mean an image virtual printer that I can use to print to image instead of print to real printer.
Any help please.
Thank you,
|
SCJP 1.5
SCWCD 1.4
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 12513
|
|
General printing to an image file isn't something you want to do if you can avoid it. If the content is primarily text, the image file would usually be much, much larger than the text equivalent, would require special software to display it, wouldn't support page breaks, and so forth.
When you do a "print to file" operation in Linux/Unix, the normal operation is that the printing code or application produces a PostScript (.ps) file. PostScript can contain images, but also provides a more efficient means of containing WYSIWYG text. In fact, PDF files are specialized extensions of PostScript. Typically if you have a bitmap image in a PDF, it will encode that image in TIFF form.
Although you can buy printers that print PostScript directly (one of the most famous of them was the Apple LaserWriter), Linux has the ability to convert from PostScript to any other Page Description Language, such as HP's PCL. There is an app for that. It's called GhostScript.
Among the output abilities of GhostScript are image files, so if you really want to print to a jpeg, bmp, gif, tiff, or whatever, there are drivers that will do that for you. See http://pages.cs.wisc.edu/~ghost/doc/AFPL/8.00/Devices.htm.
|
One of the most odious afflictions that Business has inflicted on the modern English language is "pro-active". Most of the time it's simply redundantly used in place of the simple old word "active". And a good deal of the rest of the time it means "You're not overworked enough yet, so go out and find more!"
|
 |
 |
|
|
subject: Print to Image
|
|
|