in reply to PDF::Create - send output to STDOUT?
package PDF::Create::Raw; use PDF::Create; use 5.006; use strict; use warnings; # Wrapper around PDF::Create that lets us access the raw data. our @ISA = qw(PDF::Create); our $VERSION = '0.02'; # Adds raw_data to grab the PDF data for outputting sub raw_data { my $self = shift; return $self->{'data'}; } 1; __END__ =head1 NAME PDF::Create::Raw - Perl extension for creating PDF files. =head1 DESCRIPTION Same as PDF::Create with one overrided method rawdata. =head1 AUTHOR Pumphret, Lee<lt>E<gt> =head1 SEE ALSO L<perl>. =cut
|
---|