in reply to Extracting pages from PDF files (was: PDF)

Try to check PDF extracting errors:
#!/usr/bin/perl -w use PDF::Extract; my $pdf=newPDF::Extract(PDFPages=>"1", PDFDoc=>"/folder/form.pdf"); my $res $pdf->savePDFExtract(PDFPages=>"1", PDFDoc=>'/folder/form.pdf' +, PDFCache=>"/folder"); print 'ERROR: '.$pdf->getVars("PDFError") unless $res;
and permissions of your dir where you tried store result.
      
--------------------------------
SV* sv_bless(SV* sv, HV* stash);