magick-rust icon indicating copy to clipboard operation
magick-rust copied to clipboard

Rust bindings for ImageMagick

Results 22 magick-rust issues
Sort by recently updated
recently updated
newest added

Might be an easily answered question if I looked harder, but is it possible to take a raw RGBA buffer and pass it to ImageMagick using this crate? I imagine...

Hello, I am on Windows and use the gnu toolchain for multiple reasons, but when I try to compile I get this panic : ``` thread 'main' panicked at 'ImageMagick...

How would I go about doing this? ``` magick $1 -crop \ `magick $1 -virtual-pixel edge -blur 0x15 -fuzz 15% \ -trim -format '%wx%h%O' info:` +repage $2 ``` I'm not...

Is there a way to limit the number of allowed threads to use? Command Line client supports that through ` -limit thread 1` argument

Building magick-rust out of the box on ubuntu/bionic64 is not working. Seems like several problems at once: 1. Does not find the LLVM/clang include directory (`/usr/lib/llvm-6.0/lib/clang/6.0.0/include`). 1. Does not seem...

What is the equivalent functions of `--draw` , `--fill` or `--stroke` commands and so on? I looked up the source code but didn't understand how can I use it.

Like the rust-rocksdb crate, should have a "sys" crate for the native library, imagemagick. This would make the setup and build a little easier, and may help with generating the...

Is it possible to embed image magick ? (I mean having all the lib statically linked in the binary)

Hey there, trying to read the docs at https://docs.rs/crate/magick_rust/0.7.0 results in a weird error message that I didn't know existed: ``` docs.rs failed to build magick_rust-0.7.0 Please check build logs...

First of all thx for your great lib here. I am basically trying to compare two images and afterwards use TransparentPaintImage to make the white parts in the diff transparent...