Thread Rechnung als PDF in Perl erzeugen
(23 answers)
Opened by root at 2004-12-16 22:59
Servus,
du kennst PDF::Reuse::Tutorial Folgendes Beispiel ist daraus: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 my $string = "q\n"; # save graphic state $string .= "4 w\n"; # make line width 4 pixels $string .= "10 600 m\n"; # move to x=10 y=600, starts a new subpath $string .= "40 600 l\n"; # a line to x=40 y=600 ( a horizontal line) $string .= "10 580 m\n"; $string .= "40 580 l\n"; $string .= "10 510 m\n"; $string .= "40 510 l\n"; $string .= "s\n"; # close the path and stroke $string .= "Q\n"; # restore graphic state prAdd($string); # the string is added to the content stream D.h. du kannst im String richtige Befehle absetzen... So wie ich das verstehe ist das RAW PDF was man da schreibt. greetz & fetten Segen manu PCE - Editor für Perl in Perl
Bookzilla.de - Mit jedem Kauf OpenSource unterstützen "I know I can't hold the hate inside my mind cause what consumes your thoughts controls your life" - Creed |