If the following does not help you, please
do not respond to this node. As you might have seen from the whole thread, people are at different levels of annoyal when they see someone asking to give ready-to-use code according to really fuzzy specs with no explanation of their significance. Again,
do not respond to this node.
#!perl
use strict;
use warnings;
use PDF::Create;
*IN = \*DATA;
# open IN, '<', 'infile.txt'
# or die "Could not open 'infile.txt': $!\n";
my $number;
for (<IN>) {
if (/(\d+)/) {
$number = $1;
last;
}
}
close IN;
die "Could not find number in file 'infile.txt'\n"
unless defined $number;
### This comes straight from the PDF::Create docs,
### with just slight modifications
my $pdf = new PDF::Create('filename' => 'mypdf.pdf',
'Version' => 1.2,
'PageMode' => 'UseOutlines',
'Author' => 'CombatSquirrel',
'Title' => 'The title',
);
my $root = $pdf->new_page('MediaBox' => [ 0, 0, 612, 792 ]);
# Add a page which inherits its attributes from $root
my $page = $root->new_page;
# Prepare 2 fonts
my $f1 = $pdf->font('Subtype' => 'Type1',
'Encoding' => 'WinAnsiEncoding',
'BaseFont' => 'Courier');
# Add something to the first page
$page->stringl($f1, 12, 306, 300, $number);
# Add the missing PDF objects and a the footer then close the file
$pdf->close;
__DATA__
junk junk
more junk
line 0304948457575747483322 more text
text
text
end
Regards,
CombatSquirrel.
Entropy is the tendency of everything going to hell.
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.