Agregue valor con nombre en metadatos XMP de EPS | Java
Para agregar un valor con nombre en los metadatos XMP del archivo EPS, es necesario seguir varios pasos:
- Inicialice un flujo de entrada para el archivo EPS de entrada.
- Cree una instancia de PsDocument a partir del flujo de entrada creado anteriormente.
- 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á.
- Ahora puede agregar valor con nombre para estructurar archivos de metadatos.
- Inicialice un flujo de salida para el archivo EPS de salida.
- Guarde el archivo EPS con los metadatos XMP modificados.
El siguiente fragmento de código muestra cómo agregar un valor con nombre 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 + "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}
Puede descargar ejemplos y archivos de datos desde GitHub.