# Installation The `README.md` covers the basic requirements for building and using this crate. In theory, if you have all of the requisite image libraries, ImageMagick, and Rust installed, then simply adding this crate as a dependency should be enough. If that did not work as expected, then keep reading. ## In an ideal world If everything is set up just right, then add the crate and proceed as usual. ``` cargo add magick_rust cargo build ``` But we don't live in an ideal world, so keep reading. ## ImageMagick Many Linux distributions will have the older **6.x** versions of the ImageMagick library. With the release of **7.0**, ImageMagick introduced some breaking API changes, and that may be why the Linux distros are still using the older versions. This crate only knows how to work with the **7.x** versions of ImageMagick, which means we will be building ImageMagick from source in the examples below. ## Image Libraries If you build ImageMagick and at some point try to use `magick_rust` only to get the dreaded `failed to read file` error, this is because typical ImageMagick functions return 1 (good) or 0 (bad), which offers no help at all in debugging problems like this. When this error occurs, it almost certainly means that you are missing an image library that ImageMagick relies upon to process the image in question. See the detailed steps below for some examples of installing the popular image libraries, JPEG and PNG. ## Installing on Linux Install build tools, Clang, some popular image libraries, and ImageMagick. Note that on most Linux distributions the package for ImageMagick is the older **6.x** which is too old for this crate. ```shell sudo apt-get install build-essential clang pkg-config libjpeg-dev libpng-dev wget https://imagemagick.org/archive/ImageMagick.tar.gz tar axf ImageMagick.tar.gz cd ImageMagick-* ./configure --with-magick-plus-plus=no --with-perl=no make sudo make install cd .. ``` Install Rust, if it is not already installed: ```shell curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh . "$HOME/.cargo/env" ``` Create the example and copy the code that follows into the `src/main.rs` file. ```shell cargo new --bin mrexample cd mrexample cargo add magick_rust ``` You probably do not have a `snow-covered-cat.jpg` so feel free to find a file with that name or change the name to an image file of your choosing. This code is from the `examples/thumbnail-cat.rs` example with some minor changes. ```rust use magick_rust::{magick_wand_genesis, MagickError, MagickWand}; use std::fs; use std::sync::Once; static START: Once = Once::new(); fn resize(filepath: &str) -> Result, MagickError> { START.call_once(|| { magick_wand_genesis(); }); let wand = MagickWand::new(); wand.read_image(filepath)?; wand.fit(240, 240); wand.write_image_blob("jpeg") } fn main() { match resize("snow-covered-cat.jpg") { Ok(bytes) => { fs::write("thumbnail-cat.jpg", bytes).expect("write failed"); } Err(err) => println!("error: {}", err), } } ``` Now we can finally build the example and test it out. Note that an alternative to setting `LD_LIBRARY_PATH` over and over again is to create a file in `/etc/ld.so.conf.d` that has the path `/usr/local/lib` in it. ```shell export LD_LIBRARY_PATH=/usr/local/lib cargo build cargo run ``` Hopefully that produced a `thumbnail-cat.jpg` file. ### Debugging Maybe that failed with the "failed to read file" error, in which case you can double-check that the image libraries were found and linked into the final binary. Use the `ldd` tool as shown below to make sure there are no libraries that were "not found". If there are any, make sure to install the requisite library, and then try `ldd` again. ```shell $ ldd target/debug/mrexample linux-vdso.so.1 (0x00007ffee63bd000) libMagickWand-7.Q16HDRI.so.10 => /usr/local/lib/libMagickWand-7.Q16HDRI.so.10 (0x00007fd348e52000) libMagickCore-7.Q16HDRI.so.10 => /usr/local/lib/libMagickCore-7.Q16HDRI.so.10 (0x00007fd348a54000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fd348a2d000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fd348804000) /lib64/ld-linux-x86-64.so.2 (0x00007fd348fc8000) libgomp.so.1 => /lib/x86_64-linux-gnu/libgomp.so.1 (0x00007fd3487ba000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fd3486d1000) libjpeg.so.8 => /lib/x86_64-linux-gnu/libjpeg.so.8 (0x00007fd348650000) libpng16.so.16 => /lib/x86_64-linux-gnu/libpng16.so.16 (0x00007fd348615000) libxml2.so.2 => /lib/x86_64-linux-gnu/libxml2.so.2 (0x00007fd348433000) libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fd348417000) libicuuc.so.70 => /lib/x86_64-linux-gnu/libicuuc.so.70 (0x00007fd34821a000) liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x00007fd3481ef000) libicudata.so.70 => /lib/x86_64-linux-gnu/libicudata.so.70 (0x00007fd3465d1000) libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fd3463a5000) ```