Add OrientationType type

This commit is contained in:
5ohue
2024-05-11 14:22:49 +03:00
parent 0c987e7860
commit db0044fa07
4 changed files with 54 additions and 15 deletions

View File

@ -8,8 +8,9 @@ mod endian_type;
mod filter_type;
mod gravity_type;
mod interlace_type;
mod pixel_interpolate_method;
mod metric_type;
mod orientation_type;
mod pixel_interpolate_method;
mod resource_type;
pub use self::alpha_channel_option::AlphaChannelOption;
@ -22,6 +23,7 @@ pub use self::endian_type::EndianType;
pub use self::filter_type::FilterType;
pub use self::gravity_type::GravityType;
pub use self::interlace_type::InterlaceType;
pub use self::pixel_interpolate_method::PixelInterpolateMethod;
pub use self::metric_type::MetricType;
pub use self::orientation_type::OrientationType;
pub use self::pixel_interpolate_method::PixelInterpolateMethod;
pub use self::resource_type::ResourceType;