in reply to Editing PDF document infomation tags

I think you are looking for PDF::API2. The pod mentions explicitly:

$pdf->info( 'Author' => " Alfred Reibenschuh ", 'CreationDate' => "D:20020911000000+01'00'", 'ModDate' => "D:YYYYMMDDhhmmssOHH'mm'", 'Creator' => "fredos-script.pl", 'Producer' => "PDF::API2", 'Title' => "some Publication", 'Subject' => "perl ?", 'Keywords' => "all good things are pdf" );
and
$pdf->update Updates a previously "opened" document after all changes have been applied.

This looks like what you want ...


Remember, when you stare long into the abyss, you could have been home eating ice cream.

Replies are listed 'Best First'.
Re: Re: Editing PDF document infomation tags
by Anonymous Monk on Oct 02, 2003 at 16:37 UTC
    Many thanks