The following Java code example creates a new PDF watermark
named 'Sample PDF Watermark'. This watermark contains a single element.
(See Creating Watermarks.)
/*
* This Java Quick Start uses the SOAP mode and contains the following JAR files
* in the class path:
* 1. adobe-rightsmanagement-client.jar
* 2. namespace.jar (if LiveCycle ES is deployed on JBoss)
* 3. jaxb-api.jar (if LiveCycle ES is deployed on JBoss)
* 4. jaxb-impl.jar (if LiveCycle ES is deployed on JBoss)
* 5. jaxb-libs.jar (if LiveCycle ES is deployed on JBoss)
* 6. jaxb-xjc.jar (if LiveCycle ES is deployed on JBoss)
* 7. relaxngDatatype.jar (if LiveCycle ES is deployed on JBoss)
* 8. xsdlib.jar (if LiveCycle ES is deployed on JBoss)
* 9. adobe-livecycle-client.jar
* 10. adobe-usermanager-client.jar
* 11. adobe-utilities.jar
* 12. jbossall-client.jar (use a different JAR file if Adobe LiveCycle is not deployed on JBoss)
* 13. activation.jar (required for SOAP mode)
* 14. axis.jar (required for SOAP mode)
* 15. commons-codec-1.3.jar (required for SOAP mode)
* 16. commons-collections-3.1.jar (required for SOAP mode)
* 17. commons-discovery.jar (required for SOAP mode)
* 18. commons-logging.jar (required for SOAP mode)
* 19. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
* 20. jaxen-1.1-beta-9.jar (required for SOAP mode)
* 21. jaxrpc.jar (required for SOAP mode)
* 22. log4j.jar (required for SOAP mode)
* 23. mail.jar (required for SOAP mode)
* 24. saaj.jar (required for SOAP mode)
* 25. wsdl4j.jar (required for SOAP mode)
* 26. xalan.jar (required for SOAP mode)
* 27. xbean.jar (required for SOAP mode)
* 28. xercesImpl.jar (required for SOAP mode)
*
* These JAR files are located in the following path:
* <install directory>/Adobe/Adobe LiveCycle ES4/sdk/client-libs/common
*
* The adobe-utilities.jar file is located in the following path:
* <install directory>/Adobe/Adobe LiveCycle ES4/sdk/client-libs/jboss
*
* The jbossall-client.jar file is located in the following path:
* <install directory>/Adobe/Adobe LiveCycle ES4/jboss/client
*
* SOAP required JAR files are located in the following path:
* <install directory>/Adobe/Adobe LiveCycle ES4/sdk/client-libs/thirdparty
*
* If you want to invoke a remote LiveCycle server instance and there is a
* firewall between the client application and LiveCycle server, then it is
* recommended that you use the SOAP mode. When using the SOAP mode,
* you have to include these additional JAR files
*
* For information about the SOAP
* mode, see "Setting connection properties" in Programming
* with LiveCycle server
*/
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Properties;
import com.adobe.edc.sdk.SDKException;
import com.adobe.idp.Document;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
import com.adobe.livecycle.rightsmanagement.client.RightsManagementClient;
import com.adobe.livecycle.rightsmanagement.client.WatermarkManager;
import com.adobe.livecycle.rightsmanagement.client.infomodel.InfomodelObjectFactory;
import com.adobe.livecycle.rightsmanagement.client.infomodel.PDRLException;
import com.adobe.livecycle.rightsmanagement.client.infomodel.Watermark2;
import com.adobe.livecycle.rightsmanagement.client.infomodel.Watermark2Element;
public class PDFWatermarks {
public static void main(String[] args) {
// Set connection properties required to invoke Adobe LiveCycle
// using SOAP mode
try {
Properties connectionProps = new Properties();
connectionProps.setProperty(
ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT,
"http://localhost:8080/");
connectionProps.setProperty(
ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,
ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
connectionProps.setProperty(
ServiceClientFactoryProperties.DSC_SERVER_TYPE,
ServiceClientFactoryProperties.DSC_JBOSS_SERVER_TYPE);
connectionProps.setProperty(
ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME,
"administrator");
connectionProps.setProperty(
ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD,
"password");
// Create a ServiceClientFactory object.
ServiceClientFactory serviceClient = ServiceClientFactory
.createInstance(connectionProps);
// Create a Rights Management ServiceClient object.
RightsManagementClient rmClient = new RightsManagementClient(
serviceClient);
// Get the watermark manager which is used to add, delete or update
// watermarks.
WatermarkManager watermarkManager = rmClient.getWatermarkManager();
// Registering and adding elements to the new watermarks.
// Create a Watermark2 object using the InfomodelObjectFactory.
Watermark2 newWatermark = InfomodelObjectFactory.createWatermark2();
// Create a Watermark2Element object using the
// InfomodelObjectFactory.
Watermark2Element element1 = InfomodelObjectFactory
.createWatermark2Element();
// Set the various properties such as name, description,custom text
// and date.
element1.setName("PDF element");
element1.setDescription("This is a Sample PDF element.");
// Set type of the watermark to Watermark2Element.TYPE_PDF.
element1.setType(Watermark2Element.TYPE_PDF);
// Create an IDf document form a PDF file.
Document doc = new Document(new FileInputStream("C:\\Sample.pdf"));
element1.setPDFContent(doc, "Watermark Doc");
// Set the properties for this such rotation,opacity.
element1.setOpacity(50);
element1.setRotation(45);//45 degrees rotation.
element1.setStartPage(5);
element1.setStartPage(15);//Watermark appears only on pages 10 to 15.
// Add it to the watermark.
newWatermark.addWatermarkElement(element1);
// Set the watermark name.
newWatermark.setName("Sample PDF Watermark");
// Register it.
watermarkManager.registerWatermark2(newWatermark);
} catch (PDRLException e) {
System.out.println(e.getCause());
} catch (SDKException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
|
|
|