Difference between revisions of "Laser printer"

From Teknologisk videncenter
Jump to: navigation, search
m (Postscript)
m (PCL)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
=Windows Printing=
 +
*[http://www.math.jussieu.fr/~besancon/system/windows/printers/documents/sopch04.mspx_files/mainframe.html Network Printing]
 
=PCL=
 
=PCL=
*[[Media:PostScript.pdf|Adobe Postscript reference manual]]
 
 
*[[Media:PCL 5 hp part I.pdf|HP PCL book part 1]]
 
*[[Media:PCL 5 hp part I.pdf|HP PCL book part 1]]
 +
*[[Media:PCL 5 hp part II.pdf|HP PCL book part 2]]
 +
*[http://www.undocprint.org/formats/page_description_languages/pcl PCL versions]
 +
 
=Postscript=
 
=Postscript=
*[[Media:PCL 5 hp part II.pdf|HP PCL book part 2]]
+
*[[Media:PostScript.pdf|Adobe Postscript reference manual]]
 +
 
 
----
 
----
 
Hello World example in PostScript.
 
Hello World example in PostScript.
Line 21: Line 26:
 
=Links=
 
=Links=
 
*[http://www.youtube.com/watch?v=PHxXmjxcAIo Youtube Lexmark Laser Printer Technology]
 
*[http://www.youtube.com/watch?v=PHxXmjxcAIo Youtube Lexmark Laser Printer Technology]
 +
 
[[Category:Officemachines]][[Category:Printer]]
 
[[Category:Officemachines]][[Category:Printer]]

Latest revision as of 14:31, 16 August 2011

Windows Printing

PCL

Postscript


Hello World example in PostScript.

%!PS
/Courier             % name the desired font
20 selectfont        % choose the size in points and establish 
                     % the font as the current one
72 500 moveto        % position the current point at 
                     % coordinates 72, 500 (the origin is at the 
                     % lower-left corner of the page)
(Hello world!) show  % stroke the text in parentheses
showpage             % print all on the page

Links