Add DisposeType type

This commit is contained in:
5ohue
2024-05-11 14:08:59 +03:00
parent 254ea6c771
commit 8870068f27
3 changed files with 47 additions and 1 deletions

View File

@ -2,6 +2,7 @@ mod alpha_channel_option;
mod colorspace_type;
mod composite_operator;
mod compression_type;
mod dispose_type;
mod dither_method;
mod filter_type;
mod gravity_type;
@ -13,6 +14,7 @@ pub use self::alpha_channel_option::AlphaChannelOption;
pub use self::colorspace_type::ColorspaceType;
pub use self::composite_operator::CompositeOperator;
pub use self::compression_type::CompressionType;
pub use self::dispose_type::DisposeType;
pub use self::dither_method::DitherMethod;
pub use self::filter_type::FilterType;
pub use self::gravity_type::GravityType;