t-rec 0.9.0-preview2

Blazingly fast terminal recorder that generates animated gif images for the web written in rust.
1
2
3
4
5
6
7
8
9
10
11
12
mod big_sur_corner;
mod shadow;

pub use big_sur_corner::apply_corner_to_file;
pub use shadow::apply_shadow_to_file;

/// ImageMagick CLI binary name. Windows ships `magick`; the legacy `convert`
/// binary name collides with a built-in Windows utility.
#[cfg(target_os = "windows")]
pub(crate) const IMAGEMAGICK_CMD: &str = "magick";
#[cfg(not(target_os = "windows"))]
pub(crate) const IMAGEMAGICK_CMD: &str = "convert";