Add artifact related functions

This makes it possible to blend images with user configurable percent
(see `set_image_artifact` documentation)
This commit is contained in:
5ohue
2024-05-11 21:29:36 +03:00
parent 1a66649c47
commit b8147a2b06
3 changed files with 251 additions and 4 deletions

View File

@ -15,6 +15,7 @@ mod pixel_interpolate_method;
mod rendering_intent;
mod resolution_type;
mod resource_type;
mod statistic_type;
pub use self::alpha_channel_option::AlphaChannelOption;
pub use self::colorspace_type::ColorspaceType;
@ -33,3 +34,4 @@ pub use self::pixel_interpolate_method::PixelInterpolateMethod;
pub use self::rendering_intent::RenderingIntent;
pub use self::resolution_type::ResolutionType;
pub use self::resource_type::ResourceType;
pub use self::statistic_type::StatisticType;