Agregar elementos de matriz en metadatos XMP de EPS| Java

Para agregar elementos de matriz en metadatos XMP de un archivo EPS, es necesario seguir varios pasos:

  1. Inicialice un flujo de entrada para el archivo EPS de entrada.
  2. Cree una instancia de PsDocument a partir del flujo de entrada creado anteriormente.
  3. Obtenga una instancia de XmpMetadata del PsDocument. Si el archivo EPS dado no contiene metadatos XMP, el nuevo se creará, se completará con valores de los comentarios de metadatos de PS y se le devolverá.
  4. Ahora puede agregar elementos a los campos de metadatos de la matriz.
  5. Inicialice un flujo de salida para el archivo EPS de salida.
  6. Guarde el archivo EPS con los metadatos XMP modificados.

El siguiente fragmento de código muestra cómo agregar elementos de matriz en metadatos XMP en un archivo EPS en 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 + "xmp3.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 one more "dc:title" array item 
18    xmp.addArrayItem("dc:title", new XmpValue("NewTitle"));
19    
20    // Add one more "dc:creator" array item
21    xmp.addArrayItem("dc:creator", new XmpValue("NewCreator"));
22    
23    
24    // Initialize output EPS file stream
25    FileOutputStream outPsStream = new FileOutputStream(dataDir + "xmp3_changed.eps");
26    
27    // Save document with changed XMP metadata
28		try {			
29			document.save(outPsStream);
30		} finally {
31			outPsStream.close();
32		}
33
34} finally {
35    // close input EPS stream
36		psStream.close();
37}

Consulte cómo agregar elementos de matriz en los metadatos XMP en .NET y C++.

Puede descargar ejemplos y archivos de datos desde GitHub.

Have any questions about Aspose.Page?



Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.