CacheData
EmfImage.CacheData method
Memorizza i dati nella cache e garantisce che nessun ulteriore caricamento dei dati venga eseguito dal sottostanteDataStreamContainer
.
public override void CacheData()
Esempi
Questo esempio mostra come caricare un’immagine EMF da un file ed elencare tutti i suoi record.
[C#]
string dir = "c:\\temp\\";
// L'uso di Aspose.Imaging.Image.Load è un modo unificato per caricare tutti i tipi di immagini, incluso WMF.
using (Aspose.Imaging.FileFormats.Emf.EmfImage emfImage = (Aspose.Imaging.FileFormats.Emf.EmfImage)Aspose.Imaging.Image.Load(dir + "test.emf"))
{
// Memorizza i dati nella cache per caricare tutti i record.
emfImage.CacheData();
System.Console.WriteLine("The total number of records: {0}", emfImage.Records.Count);
// La chiave è un tipo di record, il valore è il numero di record di quel tipo nell'immagine WMF.
System.Collections.Generic.Dictionary<System.Type, int> types =
new System.Collections.Generic.Dictionary<System.Type, int>();
// Raccogli le statistiche
foreach (Aspose.Imaging.FileFormats.Emf.Emf.Records.EmfRecord obj in emfImage.Records)
{
System.Type objType = obj.GetType();
if (!types.ContainsKey(objType))
{
types.Add(objType, 1);
}
else
{
types[objType]++;
}
}
// Stampa le statistiche
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);
}
}
//L'output potrebbe essere simile a questo:
//Il numero totale di record: 1188
//Conteggio tipo di record
//-----------------------------------------------
//EmfMetafileHeader: 1
//Modalità EmfSetBk: 1
//EmfSetTextAlign: 1
//EmfSetRop2: 1
//EmfSetWorldTransform: 1
//EmfExtSelectClipRgn: 1
//EmfCreateBrushIndirect: 113
//EmfSelectObject: 240
//EmfCreatePen: 116
//Modalità EmfSetPolyFill: 1
//Percorso EmfBegin: 120
//EmfMoveToEx: 122
//EmfPolyBezierTo16: 36
//EmfLineA: 172
//EmfCloseFigura: 14
//EmfEndPath: 120
//EmfStrokeAndFillPath: 113
//EmfStrokePath: 7
//EmfSetTextColor: 2
//EmfExtCreateFontIndirectW: 2
//EmfExtTextOutW: 2
//EmfStretchBlt: 1
//EmfE di: 1
Guarda anche
- class EmfImage
- spazio dei nomi Aspose.Imaging.FileFormats.Emf
- assemblea Aspose.Imaging