These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Cropping & Replacing Footers on Scanned Pages

testpath1
Registered: Jul 12 2007
Posts: 4

I have scanned pdfs with footers I would like to replace. I have tried cropping the page and then resizing the page but this only results in restoring the previously cropped footer. How can I crop out a footer and then restore the page to full letter size so I can add a new footer? Since I have over 1,000 pages to do, I would like to automate the process.

My Product Information:
Acrobat Pro 8.0999999999999996447286321199499070644378662109375, Windows
dthanna
ExpertTeam
Registered: Sep 28 2005
Posts: 248
The fastest way would be a JavaScript driven series of form fields.

Here's the general concept.

You loop through each page in the document. On each page you place a text field down with a white background and no border to cover up the existing footer.

If you want to use the built in footer tool, flatten the document at this stage.. doc.flattenPages(), then use the internal footer tool.

If you want more control, skip the flattening at this point. Now place another text box, this time with no border and a transpartent background with the text you want for the actual page number. You get to decide the location, font, size, etc. Grab the current page number for your value.

Flatten and you are good to go. If you need some code, holler.

Thanks.

Douglas Hanna is a member of the Production Print Technology team at Aon.
www.aonhewitt.com

testpath1
Registered: Jul 12 2007
Posts: 4
Thank you so much for your response. My experience is limited to recording and running batch file so, yes, if you could get me started with some code it would be very helpful. Thank you.