AnimatedGifConfigurationAllowClippedFrames Property

Gets or sets whether the encoder is allowed to add smaller actual frames than the Size of the animation.
Default value: .
See also the Remarks section of the AllowDeltaFrames property for more details.

Definition

Namespace: KGySoft.Drawing.Imaging
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 10.0.0-rc.1
C#
public bool AllowClippedFrames { get; set; }

Property Value

Boolean
If , then always full-sized frames are added to the animation. This might end up in a larger encoded size but provides better compatibility.
If , then actual frames might be clipped. If AllowDeltaFrames is , then it affects only the clipping of possible transparent borders. Some decoders may not tolerate this option.

See Also