Help for this page

Select Code to Download


  1. or download this
    sub PrintTextAngle {
        my ($texthandler, $x, $y, $rot, $text, $options) = @_;
    ...
        PrintTextAngle($texthandler, 20, 10, 0, "Do not throw away!");
    }
    $pdf_input->saveas("$Filename-TEST.pdf");
    
  2. or download this
    my $EGOverprint = $pdf->egstate();
    my $EGNormal = $pdf->egstate();
    $EGOverprint->strokeoverprint(1);
    $EGNormal->strokeoverprint(0);
    
  3. or download this
    $text->egstate($EGOverprint);
    
  4. or download this
    $text->egstate($EGNormal);