nlfiedler / magick-rust

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

More MagickWand functions implemented #41

Closed Mewp closed 6 years ago

Mewp commented 6 years ago

Added support for MagickPingImage[Blob], MagickResetImagePage and MagickSetImageAlphaChannel.

One thing changed in existing API is that I made read_image_blob accept AsRef<[u8]> instead of only &Vec<u8>. This should be backwards compatible, and allows passing borrowed slices to this function.

nlfiedler commented 6 years ago

Awesome, thanks again.