Obtenga metadatos XMP de un archivo EPS usando .NET

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

Para extraer 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 puedes ver los valores de los campos de metadatos.

El siguiente fragmento de código muestra cómo extraer 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 + "get_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    // Get "CreatorTool" value
15    if (xmp.Contains("xmp:CreatorTool"))
16        Console.WriteLine("CreatorTool: " + xmp["xmp:CreatorTool"].ToStringValue());
17    
18    // Get "CreateDate" value
19    if (xmp.Contains("xmp:CreateDate"))
20        Console.WriteLine("CreateDate: " + xmp["xmp:CreateDate"].ToStringValue());
21
22    // Get a width of a thumbnail image if exists
23    if (xmp.Contains("xmp:Thumbnails") && xmp["xmp:Thumbnails"].IsArray)
24    {
25        XmpValue val = xmp["xmp:Thumbnails"].ToArray()[0];
26        if (val.IsNamedValues && val.ToDictionary().ContainsKey("xmpGImg:width"))
27            Console.WriteLine("Thumbnail Width: " + val.ToDictionary()["xmpGImg:width"].ToInteger());
28    }
29
30    // Get "format" value
31    if (xmp.Contains("dc:format"))
32        Console.WriteLine("Format: " + xmp["dc:format"].ToStringValue());
33
34    // Get "DocumentID" value
35    if (xmp.Contains("xmpMM:DocumentID"))
36        Console.WriteLine("DocumentID: " + xmp["xmpMM:DocumentID"].ToStringValue());
37
38}
39finally
40{
41    psStream.Close();
42}

Consulte la extracción de 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.