Help for this page

Select Code to Download


  1. or download this
    use Text::FromAny;
    
    ...
    my $obj      = Text::FromAny->new(file => $pdf_file);
    my $text     = $obj->text;    
    print $text;
    
  2. or download this
    use CAM::PDF;
    
    ...
    my $txt      = $obj->getPageText(1);
    CAM::PDF->asciify(\$txt);       # same results without this statement.
    print $txt;
    
  3. or download this
    use CAM::PDF;
    use CAM::PDF::PageText;
    ...
    my $txt      = CAM::PDF::PageText->render($tree);
    CAM::PDF->asciify(\$txt);       # same results without this statement.
    print $txt;