nlfiedler / magick-rust

Rust bindings for ImageMagick
https://crates.io/crates/magick_rust
Apache License 2.0
254 stars 68 forks source link

CompositeOperator type #113

Closed 5ohue closed 10 months ago

5ohue commented 10 months ago

This pull request adds CompositeOperator instead of using bindings::CompositeOperator. WARNING: introduces an API change: Instead of doing this: magick_rust::bindings::CompositeOperator_LightenIntensityCompositeOp A user would have to do this: magick_rust::CompositeOperator::LightenIntensity

nlfiedler commented 10 months ago

I'll make a note of the change in the CHANGELOG file. Thanks.