We are trying to go paperless in our office... which means pdf'ing all of our documents. We would need to add our company letterhead to the document and ar elooking for a easier way right now we would print a word document to PDF then open the pdf and add a watermark to the pages... page one gets the letterhead with address and every other page just gets the company name letterhead. I am looking for a way to just print the pdf from word and add the letterhead (specific to each page) directly rather than opening the pdf and adding the watermark to each page. I understand you can select page ranges to add the watermark but my boss has asked me to looking into this topic to make it easier to do straight from word... ANY suggestions?
Add Watermarks
(For Acrobat)
The following are two methods for adding watermarks to a PDF document—using either the watermark from an external file or from text specified in the JavaScript.
Adding a watermark from an external file
Add a watermark from an external PDF file to a selected range of pages in the current document.
The following code(for Acrobat 7 or higher) adds a watermark image, from an external file, to the first two pages of the document.
this.addWatermarkFromFile({
cDIPath: "/C/watermark.pdf",
nSourcePage: 0, // select source doc page 0
nEnd: 1,
nHorizAlign: 0,
nVertAlign: 0,
nHorizValue: 288,
nVertValue: -144,
});
NOTE:Because of security restrictions, the above script can only be executed in the JavaScript Console or in batch mode.
Adding a watermark from text
Add specified text to current document as a watermark. The following code places the word “Confidential” on all pages of the document. This code could be run from the JavaScript console.
this.addWatermarkFromText(
"Confidential", 0, font.HelvB, 24,
color.red );
Use batch processing to quickly add watermarks to lots of files. This will set a watermark to only show when printing? This is a useful feature for ISO9001 companies which need to mark documents when they are uncontrolled.
1. Advanced > Document Processing > Batch Processing
2. Click the New button and give the sequence a name
3. From the list on the left, choose Add Watermark
4. Double-click Add Watermark from the list on the right
5. Format your watermark text as desired. Click on the Appearance Options link and disable Show when displaying on screen.
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.