You are getting the error "Can't call method "getRootDict" on an undefined value" because 'new.pdf' doesn't exist.
Manipulating PDF files is quite complex and I found that I had to use both modules to achieve what you are trying to do as PDF::API2 doesn't seem to have any way of extracting text and CAM::PDF doesn't seem to have any way of adding an empty page.
Hopefully this will help you on your way:
use strict;
use warnings;
use CAM::PDF;
use PDF::API2;
my $pdfone = CAM::PDF->new('input.pdf');
my $pdftwo = PDF::API2->open('output.pdf');
my $font = $pdftwo->corefont('Helvetica-Bold');
for my $pagenum (1 .. $pdfone->numPages() ) {
my $text = $pdfone->getPageText($pagenum) or next;
my $page = $pdftwo->page(); # add a new page
my $pdf_text = $page->text();
$pdf_text->font($font,12);
my @lines = split("\n",$text);
my ($x,$y) = (50,700);
for my $line (@lines) {
$pdf_text->translate($x,$y);
$pdf_text->text($line);
$y = $y - 20;
}
}
$pdftwo->saveas('output.pdf');
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.