Vizualizați conținut de ajutor pentru versiunea:
In the Create Correspondence UI, agent users preview the correspondence in final shape in which it is sent to post processing, such as for e-mailing or printing.
To prevent unauthorized use of this data, organizations can impose a watermark on the preview PDF. The default watermark is "PREVIEW", which appears across the PDF.
To enable the watermark in preview PDF, select the Apply Watermark During Preview option in Correspondence Management Configurations at http://[server]:[port]/system/console/configMgr.

-
In the apps folder, create a folder named previewwatermark with path/structure similar to the previewwatermark folder in the libs folder:
-
Ensure that the Overlay Node dialog has the following values:
Path: /libs/fd/cm/configFiles/previewwatermark
Overlay Location: /apps/
Match Node Types: Checked
Notă:
Do not make changes in the /libs branch. Any changes you do make may be lost, because this branch is liable to changes whenever you:
- Upgrade on your instance
- Apply a hot fix
- Install a feature pack
-
<DDX xmlns="http://ns.adobe.com/DDX/1.0/"> <PDF result="output.pdf"> <PDF source="input.pdf"/> <Watermark opacity="15%" rotation="45"> <StyledText> <p font-family="Georgia" font-size="70pt" color="black" font-weight="bold"> PREVIEW </p> </StyledText> </Watermark> </PDF> </DDX>
For information on customizing the watermark appearance, text, and alignment, see Adding and removing watermarks and backgrounds in the Assembler Service and DDX Reference document.
Notă:
In the ddx file, the references to result and source should remain unchaged to output.pdf and input.pdf. Name of the file ddx should also not be changed.