identicon-rs 2.0.2

identicon-rs is a library built around custom generation of identicon images.
Documentation

Identicon-rs

dependency status

This is an Identicon implementation in rust.

Example:

use identicon_rs::Identicon;
use std::io;

fn main() -> Result<(), io::Error> {
    let fluffy_samurai = String::from("fluffy-samurai");
    let test_string = "identicon_rs";

    // stored example
    let identicon_fluffy = Identicon::new(&fluffy_samurai);
    identicon_fluffy.save_image("output_1.png")?;

    // chained example with no border
    Identicon::new(test_string)
        .border(0)
        .save_image("output_2.png")?;
    Ok(())
}

You can run this example with cargo run --example main.

The repository contains an example webservice that you can run with cargo run --example webserver.

TODO

  • add more information to README.md
  • add more examples

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.