in reply to Re: How to do in "PDF::Extract"?
in thread How to do in "PDF::Extract"?

As per your advice, i modified that code. No error found but my problem not solved. I opened the extracted output pdf file and then without any modification i closed it. It shows the Acrobat dialog window "Do you want to save changes to "my1.pdf" before closing?". Could you please help me.

Thanks,
Prabudass

Replies are listed 'Best First'.
Re^3: How to do in "PDF::Extract"?
by matze77 (Friar) on Dec 18, 2008 at 14:18 UTC

    If i understand it right (and others suggested), this window comes from Acrobat so there is maybe no opportunity to control this window with your perl code, maybe you could tune Acrobat to "autosave" or something, but i dont own Acrobat ...

    MH
Re^3: How to do in "PDF::Extract"?
by Anonymous Monk on Dec 18, 2008 at 12:01 UTC
    Try Ghostview/SumatraPDF/Foxit/Inkscape instead.
Re^3: How to do in "PDF::Extract"?
by Anonymous Monk on Jun 15, 2015 at 13:27 UTC
    Try This Code. it will help for you. Hope
    $pdfextract=new PDF::Extract(PDFDoc=>"input path with pdf file"); $i=1; while($pdfextract->savePDFExtract(PDFPages=>$i,PDFCache=>" destination +path")) { $i++; + }
    This code work for me Fine...