Class TimeInterval
Class TimeInterval
名称: Aspose.Imaging.ImageOptions アセンション: Aspose.Imaging.dll (25.4.0)
ミリ秒で時間の間隔を表す
public class TimeInterval
Inheritance
相続人
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
GIF画像からアニメーションの一部を時間間隔に基づいて輸出する。
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);
}
Constructors
TimeInterval(ウィン、ウィン)
Aspose.Imaging.ImageOptions.TimeInterval クラスの新しい例を開始します。
public TimeInterval(uint from, uint to)
Parameters
from
uint
千秒から。
to
uint
何千秒も。
Properties
From
受けるかセットする から ミリ秒
public uint From { get; set; }
不動産価値
To
数百秒、または数百秒。
public uint To { get; set; }