Agregar propiedades en metadatos XMP de EPS | .NETO

Puede comprobar la calidad de los metadatos XMP de Aspose.Page trabajando con la aplicación web Metadata

Para agregar propiedades en los metadatos XMP del 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 puedes agregar propiedades de campos de metadatos.
  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 propiedades en metadatos XMP de un archivo EPS en C#:

 1// For complete examples and data files, please go to https://github.com/aspose-page/Aspose.Page-for-.NET
 2// The path to the documents directory.
 3string dataDir = RunExamples.GetDataDir_WorkingWithXMPMetadataInEPS();
 4// Initialize EPS file input stream
 5System.IO.FileStream psStream = new System.IO.FileStream(dataDir + "add_props_input.eps", System.IO.FileMode.Open, System.IO.FileAccess.Read);
 6// Create PsDocument instance from stream
 7PsDocument document = new PsDocument(psStream);            
 8
 9try
10{
11    // 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)
12    XmpMetadata xmp = document.GetXmpMetadata();
13
14    //Change XMP metadata values
15
16    DateTime now = DateTime.UtcNow;
17
18    // Add Integer poperty
19    xmp.Add("xmp:Intg1", new XmpValue(111));
20
21    // Add DateTime poperty
22    xmp.Add("xmp:Date1", new XmpValue(now));
23
24    // Add Double poperty
25    xmp.Add("xmp:Double1", new XmpValue(111.11D));
26
27    // Add String poperty
28    xmp.Add("xmp:String1", new XmpValue("ABC"));
29
30    // Save EPS file with changed XMP metadata
31
32    // Create ouput stream
33    using (System.IO.FileStream outPsStream = new System.IO.FileStream(dataDir + "add_props_output.eps", System.IO.FileMode.Create, System.IO.FileAccess.Write))
34    {
35        // Save EPS file
36        document.Save(outPsStream);
37    }
38
39}
40finally
41{
42    psStream.Close();
43}

Consulte cómo agregar propiedades en los metadatos XMP en Java y C++.

Evalúe los metadatos XMP trabajando en línea en nuestra aplicación Metadatos.

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.