Interface IAnimationFrame

Interface IAnimationFrame

Namespace: Aspose.Imaging
Assembly: Aspose.Imaging.dll (25.7.0)

The Animation frame

public interface IAnimationFrame
{
    double Duration { get; }
    void SetDuration(double value);
    byte[] FrameData { get; }
    void SetFrameData(byte[] value);
}

Properties

DisposalMethod

Gets the disposal method.

AnimationDisposalMethods GetDisposalMethod()
   {
      get
      {
         return _disposalMethod;
      }
   }
   private AnimationDisposalMethods _disposalMethod;

Property Value

AnimationDisposalMethods

FrameLeft

Gets the frame left offset.

int FrameLeft
   {
      get;
   }

Property Value

int

FrameTime

Gets the frame duration.

int FrameTime
   {
      get;
   }

Property Value

int

FrameTop

Gets the frame top offset.

int FrameTop
   {
      get;
   }

Property Value

int

UseAlphaBlending

Gets a value indicating whether [use alpha blending].

bool UseAlphaBlending
   {
      get;
   }

Property Value

bool

Methods

GetFullFrame()

Gets the full frame.

RasterImage GetFullFrame()
   {
   }

Returns

RasterImage

The RasterImage with full frame

 English