svg2sixel

Crates.iosvg2sixel
lib.rssvg2sixel
version0.1.2
sourcesrc
created_at2024-06-23 13:06:04.834569
updated_at2024-07-04 12:13:56.761633
descriptionRender a SVG as sixel for display in terminal
homepagehttps://github.com/gulrotkake/svg2sixel
repositoryhttps://github.com/gulrotkake/svg2sixel
max_upload_size
id1281190
size35,490
Michael Mortensen (gulrotkake)

documentation

README

svg2sixel

Renders a SVG as sixels for display in terminals

Usage

As a library:

    match svg2sixel::svg2sixel(svg_string) {
        Ok(data) => println!("{data}"),
        Err(err) => eprintln!("{err}"),
    }

As a command line tool:

$ ./svg2sixel image.svg

or via stdin

cat image.svg | $ ./svg2sixel -
Commit count: 10

cargo fmt