Aggiungi valore denominato nei metadati XMP di EPS | Java

Per aggiungere un valore denominato nei metadati XMP di un file EPS, è necessario eseguire diversi passaggi:

  1. Inizializzare un flusso di input per il file EPS di input.
  2. Creare un’istanza di PsDocument dal flusso di input creato in precedenza.
  3. Ottenere un’istanza di XmpMetadata dal PsDocument. Se il file EPS specificato non contiene metadati XMP, ne verrà creato uno nuovo, compilato con i valori dei commenti dei metadati PS e restituito.
  4. Ora è possibile aggiungere un valore denominato ai campi dei metadati della struttura.
  5. Inizializzare un flusso di output per il file EPS di output.
  6. Salvare il file EPS con i metadati XMP modificati.


Il seguente frammento di codice mostra come aggiungere un valore denominato nei metadati XMP nel file EPS in Java:

 1// For complete examples and data files, please go to https://github.com/aspose-page/Aspose.Page-for-Java
 2// Set license
 3new License().setLicense(BaseExamplesTest.LICENSE_PATH);
 4
 5// The path to the documents directory.
 6String dataDir = Utils.getDataDir();
 7
 8// Initialize input EPS file stream
 9FileInputStream psStream = new FileInputStream(dataDir + "xmp4.eps");
10
11PsDocument document = new PsDocument(psStream);
12
13try {
14    // 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)
15    XmpMetadata xmp = document.getXmpMetadata();
16
17    // Add new named value "stDim:newKey" with string value "NewValue" to structure "xmpTPg:MaxPageSize" 
18    xmp.addNamedValue("xmpTPg:MaxPageSize", "stDim:newKey", new XmpValue("NewValue"));
19    
20    
21    // Initialize output EPS file stream
22    FileOutputStream outPsStream = new FileOutputStream(dataDir + "xmp4_changed.eps");
23    
24    // Save document with changed XMP metadata
25		try {			
26			document.save(outPsStream);
27		} finally {
28			outPsStream.close();
29		}
30
31} finally {
32    // close input EPS stream
33		psStream.close();
34}

Vedere l’aggiunta di un valore denominato nei metadati XMP in .NET e C++.

È possibile scaricare esempi e file di dati da GitHub.

Have any questions about Aspose.Page?



Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.