Subject: | Add support for IO::String and "in memory" files |
I would like to request support for IO::String module so PDF::Reuse could be used like in the example below:
use IO::String;
use PDF::Reuse;
my $pdf = "";
my $fh = IO::String->new(\$pdf);
prInitVars();
prFile($fh);
prText(100, 500, 'Hello World !');
prEnd();