Add XML namespace in XMP metadata of EPS |Java

In order to add XML namespace in XMP metadata of EPS file it is necessary to do several steps:

  1. Initialize an input stream for input EPS file.
  2. Create an instance of PsDocument from created earlier input stream.
  3. Get an instance of XmpMetadata from the PsDocument. If given EPS file doesn’t contain XMP metadata the new one will be created, filled in with values from PS metadata comments and returned to you.
  4. Now you can add new XML namespace to metadata.
  5. Initialize an output stream for output EPS file.
  6. Save EPS file with changed XMP metadata.


Following code snippet shows how to add XML namespace in XMP metadata in EPS file in Java:

 1// Set license
 2new License().setLicense(BaseExamplesTest.LICENSE_PATH);
 3
 4// The path to the documents directory.
 5String dataDir = Utils.getDataDir();
 6
 7// Initialize input EPS file stream
 8FileInputStream psStream = new FileInputStream(dataDir + "xmp3.eps");
 9
10PsDocument document = new PsDocument(psStream);
11
12try {
13    // Get XMP metadata. If EPS file doesn't contain XMP metadata we get new one filled with values from PS metadata comments (%%Creator, %%CreateDate, %%Title etc)
14    XmpMetadata xmp = document.getXmpMetadata();
15
16    // Add new XML namespace "http://www.some.org/schema/tmp#" with prefix "tmp"
17    xmp.registerNamespaceURI("tmp", "http://www.some.org/schema/tmp#");
18    
19    //Add new property "tmp:newKey" in new XML namespace
20    xmp.put("tmp:newKey", new XmpValue("NewValue"));
21    
22    
23    // Initialize output EPS file stream
24    FileOutputStream outPsStream = new FileOutputStream(dataDir + "xmp3_changed.eps");
25    
26    // Save document with changed XMP metadata
27		try {			
28			document.save(outPsStream);
29		} finally {
30			outPsStream.close();
31		}
32
33} finally {
34    // close input EPS stream
35		psStream.close();
36}

See adding XMl namespace in XMP metadata in .NET and C++.



You can download examples and data files from GitHub.

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.