// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) James South. // Licensed under the Apache License, Version 2.0. // // // A single gif frame. // // -------------------------------------------------------------------------------------------------------------------- namespace ImageProcessor.Imaging.Formats { using System.Drawing; /// /// A single gif frame. /// public class GifFrame { /// /// Gets or sets the image. /// public Image Image { get; set; } /// /// Gets or sets the delay in milliseconds. /// public int Delay { get; set; } /// /// Gets or sets the x position of the frame. /// public int X { get; set; } /// /// Gets or sets the Y position of the frame. /// public int Y { get; set; } } }