Agregue metadatos XMP a un archivo EPS usando .NET

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

Para agregar metadatos XMP a 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 puedes ver los valores de los campos de metadatos.
  5. Inicialice un flujo de salida para el archivo EPS de salida.
  6. Guarde el archivo EPS con nuevos metadatos XMP.

El siguiente fragmento de código muestra cómo agregar metadatos XMP a 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_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    // Check metadata values extracted from PS metadata comments and set up in new XMP metadata
15
16    // Get "CreatorTool" value
17    if (xmp.Contains("xmp:CreatorTool"))
18        Console.WriteLine("CreatorTool: " + xmp["xmp:CreatorTool"].ToStringValue());
19
20    // Get "CreateDate" value
21    if (xmp.Contains("xmp:CreateDate"))
22        Console.WriteLine("CreateDate: " + xmp["xmp:CreateDate"].ToStringValue());
23
24    // Get "format" value
25    if (xmp.Contains("dc:format"))
26        Console.WriteLine("Format: " + xmp["dc:format"].ToStringValue());
27
28    // Get "title" value
29    if (xmp.Contains("dc:title"))
30        Console.WriteLine("Title: " + xmp["dc:title"].ToArray()[0].ToStringValue());
31
32    // Get "creator" value
33    if (xmp.Contains("dc:creator"))
34        Console.WriteLine("Creator: " + xmp["dc:creator"].ToArray()[0].ToStringValue());
35
36    // Get "MetadataDate" value
37    if (xmp.Contains("xmp:MetadataDate"))
38        Console.WriteLine("MetadataDate: " + xmp["xmp:MetadataDate"].ToStringValue());
39
40    // Save EPS file with new XMP metadata
41    
42    // Create ouput stream
43    using (System.IO.FileStream outPsStream = new System.IO.FileStream(dataDir + "add_output.eps", System.IO.FileMode.Create, System.IO.FileAccess.Write))
44    {
45        // Save EPS file
46        document.Save(outPsStream);
47    }
48
49}
50finally
51{
52    psStream.Close();
53}

Consulte cómo agregar 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.