http://qs321.pair.com?node_id=229268


in reply to Problems using PDF::API2

A quick glance at the code of PDF::API2::PDF::Dict reveiled the following snippet:
my $temp_dir = -d '/tmp' ? '/tmp' : $ENV{TMP} || $ENV{TEMP}; $tempbase = sprintf("%s/%d-%d-0000", $temp_dir, $$, time());
Since you're trying to use it under a Windows machine, you should either set the environment setting TMP or TEMP to avoid the warning.

Hope it helps,

-- JaWi

"A chicken is an egg's way of producing more eggs."