TimeInterval

TimeInterval class

Représente l’intervalle de temps en millisecondes

public class TimeInterval

Constructeurs

NomLa description
TimeInterval(uint, uint)Initialise une nouvelle instance duTimeInterval classe.

Propriétés

NomLa description
From { get; set; }Obtient ou définit De millisecondes.
To { get; set; }Obtient ou définit To milliseconds.

Exemples

Exportation d’une partie de l’animation à partir d’une image GIF basée sur un intervalle de temps.

[C#]

using (var image = Image.Load("Animation.gif"))
{
    var options = new GifOptions
    {
        FullFrame = true,
        MultiPageOptions = new MultiPageOptions
        {
            Mode = MultiPageMode.TimeInterval,
            TimeInterval = new TimeInterval(0, 400)
        }
    };

    image.Save("PartOfAnimation.gif", options);
}

Voir également