add MagickBrightnessContrastImage

This commit is contained in:
Maks Rawski
2022-11-13 18:40:00 +01:00
parent f30dfb43fe
commit b3fc4473b9

View File

@ -992,6 +992,9 @@ impl MagickWand {
// Control the brightness, saturation, and hue of an image
MagickModulateImage => modulate_image(brightness: f64, saturation: f64, hue: f64)
/// Control the brightness and contrast
MagickBrightnessContrastImage => brightness_contrast_image(brightness: f64, contrast: f64)
/// Set the image alpha channel mode.
MagickSetImageAlphaChannel => set_image_alpha_channel(
alpha_channel: bindings::AlphaChannelOption)