Class ProgressEventHandlerInfo
Class ProgressEventHandlerInfo
Název místa: Aspose.Imaging.ProgressManagement Shromáždění: Aspose.Imaging.dll (25.4.0)
Tato třída představuje informace o pokroku v provozu snímků / ukládání / vývozu,které lze použít v externí aplikaci pro zobrazení pokroku konverze na koncového uživatele
public class ProgressEventHandlerInfo
Inheritance
object ← ProgressEventHandlerInfo
Dědiční členové
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
Následující příklad ukazuje, jak tisknout informace o vývojových událostech pro nákladní/exportní operace.
public void Test3460()
{
string dir = "c:\\aspose.imaging\\net\\issues\\3460";
string fileName = System.IO.Path.Combine(dir, "big.png");
// Example of use of separate operation progress event handlers for load/export operations
using (var image = Aspose.Imaging.Image.Load(fileName, new Aspose.Imaging.LoadOptions { ProgressEventHandler = ProgressCallback }))
{
image.Save(fileName + ".psd",
new Aspose.Imaging.ImageOptions.PsdOptions() { ProgressEventHandler = ExportProgressCallback });
}
}
private void ProgressCallback(Aspose.Imaging.ProgressManagement.ProgressEventHandlerInfo info)
{
System.Console.WriteLine("{0} : {1}/{2}", info.EventType, info.Value, info.MaxValue);
}
private void ExportProgressCallback(Aspose.Imaging.ProgressManagement.ProgressEventHandlerInfo info)
{
System.Console.WriteLine("Export event {0} : {1}/{2}", info.EventType, info.Value, info.MaxValue);
}
// The STDOUT log may look like this:
//Initialization : 1/4
//PreProcessing : 2/4
//Processing : 3/4
//Finalization : 4/4
//Export event Initialization : 1/4
//Export event PreProcessing : 2/4
//Export event Processing : 3/4
//Export event RelativeProgress : 1/1
//RelativeProgress : 1/1
//Export event Finalization : 4/4
Properties
Description
Obdržíte popis události
public string Description { get; }
Hodnota nemovitosti
EventType
Získejte typ události.
public EventType EventType { get; }
Hodnota nemovitosti
MaxValue
Získáte horní limit hodnoty pokroku.
public int MaxValue { get; }
Hodnota nemovitosti
Value
Získává aktuální hodnotu pokroku.
public int Value { get; }