CacheData
WmfImage.CacheData method
Almacena en caché los datos y garantiza que no se realizará ninguna carga de datos adicional desde el subyacente DataStreamContainer
.
public override void CacheData()
Excepciones
excepción | condición |
---|---|
NotImplementedException |
Ejemplos
Este ejemplo muestra cómo cargar una imagen WMF desde un archivo y enumerar todos sus registros.
[C#]
string dir = "c:\\temp\\";
// El uso de Aspose.Imaging.Image.Load es una forma unificada de cargar todo tipo de imágenes, incluido WMF.
using (Aspose.Imaging.FileFormats.Wmf.WmfImage wmfImage = (Aspose.Imaging.FileFormats.Wmf.WmfImage)Aspose.Imaging.Image.Load(dir + "test.wmf"))
{
// Caché de datos para cargar todos los registros.
wmfImage.CacheData();
System.Console.WriteLine("The total number of records: {0}", wmfImage.Records.Count);
// La clave es un tipo de registro, el valor es el número de registros de ese tipo en la imagen WMF.
System.Collections.Generic.Dictionary<System.Type, int> types =
new System.Collections.Generic.Dictionary<System.Type, int>();
// Reunir estadísticas
foreach (Aspose.Imaging.FileFormats.Wmf.Objects.WmfObject obj in wmfImage.Records)
{
System.Type objType = obj.GetType();
if (!types.ContainsKey(objType))
{
types.Add(objType, 1);
}
else
{
types[objType]++;
}
}
// Imprimir estadísticas
System.Console.WriteLine("Record Type Count");
System.Console.WriteLine("----------------------------------------------");
foreach (System.Collections.Generic.KeyValuePair<System.Type, int> entry in types)
{
string objectType = entry.Key.Name;
string alignmentGap = new string(' ', 40 - objectType.Length);
System.Console.WriteLine("{0}:{1}{2}", entry.Key.Name, alignmentGap, entry.Value);
}
}
//La salida puede verse así:
//El número total de registros: 613
//Recuento de tipos de registro
//----------------------------------------------
//WmfSetBkMode: 1
//WmfSetTextAlign: 1
//WmfSetRop2: 1
//WmfSetWindowOrg: 1
//WmfEstablecerVentanaExt: 1
//WmfCreateBrushInDirect: 119
//WmfSeleccionarObjeto: 240
//WmfCreatePenInDirecto: 119
//WmfSetPolyFillMode: 1
//WmfPolyPolygon: 114
//WmfPolyLine: 7
//WmfEstablecerTextoColor: 2
//WmfCreateFontInDirect: 2
//WmfExtTextOut: 2
//WmfDibStrechBlt: 1
//WmfEof: 1
Ver también
- class WmfImage
- espacio de nombres Aspose.Imaging.FileFormats.Wmf
- asamblea Aspose.Imaging