Difference between revisions of "Laser printer"
From Teknologisk videncenter
m |
m |
||
Line 2: | Line 2: | ||
*[[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]] | *[[Media:PCL 5 hp part II.pdf|HP PCL book part 2]] | ||
+ | =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]] |
Revision as of 11:21, 28 April 2011
PCL
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