using System;
using System.Collections.Generic;
using System.Text;
namespace FreeImageAPI.Metadata
{
///
/// Specifies how a single frame will be handled after being displayed.
///
public enum DisposalMethodType : byte
{
///
/// Same behavior as but should not be used.
///
Unspecified,
///
/// The image is left in place and will be overdrawn by the next image.
///
Leave,
///
/// The area of the image will be blanked out by its background.
///
Background,
///
/// Restores the the area of the image to the state it was before it
/// has been dawn.
///
Previous,
}
}