Difference between revisions of "Laser printer"

From Teknologisk videncenter
Jump to: navigation, search
m (New page: =Links= *[http://www.youtube.com/watch?v=PHxXmjxcAIo Youtube Lexmark Laser Printer Technology] Category:OfficemachinesCategory:Printer)
 
m (PCL)
 
(9 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=
 +
*[[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=
 +
*[[Media:PostScript.pdf|Adobe Postscript reference manual]]
 +
 +
----
 +
Hello World example in PostScript.
 +
<source lang=text>
 +
%!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
 +
</source>
 +
----
 +
 
=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