14 releases

0.7.1 Oct 7, 2023
0.6.2 Oct 20, 2022
0.6.1 May 1, 2022
0.6.0 Feb 5, 2022
0.2.0 Oct 23, 2020

#71 in Command-line interface

Download history 4179/week @ 2023-12-15 2042/week @ 2023-12-22 2180/week @ 2023-12-29 2069/week @ 2024-01-05 3210/week @ 2024-01-12 3324/week @ 2024-01-19 3529/week @ 2024-01-26 3502/week @ 2024-02-02 4243/week @ 2024-02-09 5311/week @ 2024-02-16 5302/week @ 2024-02-23 5798/week @ 2024-03-01 4571/week @ 2024-03-08 5264/week @ 2024-03-15 6180/week @ 2024-03-22 3471/week @ 2024-03-29

20,627 downloads per month
Used in 31 crates (27 directly)

MIT and LGPL-3.0-or-later

54KB
1K SLoC

viuer

Display images in the terminal with ease.

ci

viuer is a Rust library that makes it easy to show images in the terminal. It has a straightforward interface and is configured through a single struct. The default printing method is through lower half blocks (▄ or \u2585). However some custom graphics protocols are supported. They result in full resolution images being displayed in specific environments:

Usage

Add this to Cargo.toml:

[dependencies]
viuer = "0.6"

For a demo of the library's usage and example screenshots, see viu.

Examples

// src/main.rs
use viuer::{print_from_file, Config};

fn main() {
    let conf = Config {
        // set offset
        x: 20,
        y: 4,
        // set dimensions
        width: Some(80),
        height: Some(25),
        ..Default::default()
    };

    // starting from row 4 and column 20,
    // display `img.jpg` with dimensions 80x25 (in terminal cells)
    // note that the actual resolution in the terminal will be 80x50
    print_from_file("img.jpg", &conf).expect("Image printing failed.");
}

Or if you have a DynamicImage, you can use it directly:

// ..Config setup

let img = image::DynamicImage::ImageRgba8(image::RgbaImage::new(20, 10));
viuer::print(&img, &conf).expect("Image printing failed.");

Docs

Check the full documentation for examples and all the configuration options.

Dependencies

~15–27MB
~206K SLoC