eth-blockies-rs

binary-example.png

A lightweight library in pure Rust to get Ethereum-style blocky identicon data, which can be used for generating blockies icon images, printing to terminal, etc.

Useful when getting raw RGB data of Ethereum-style blockies, as well as complete png image files.

Supports general Rust bin/lib, and WebAssembly (wasm) target.

Live Demo

library-example.png

Library

Documentation

Prerequisites

Library Usage Examples

// blockies from general string seed { let seed = "eth-blockies-rs";

// general string seed: used as it is
let blockies_data_from_string = eth_blockies_data(seed);

}

// blockies from general byte-array seed { let seed: &[u8] = &[ 0x0c, 0x93, 0xa3, 0x2e, 0xe5, 0x2b, 0xf6, 0x43, 0x66, 0xdb, 0xdc, 0xd7, 0xed, 0xde, 0x00, 0x78, ];

// general byte-array seed: used as it is
let blockies_data_from_byte_arr = eth_blockies_data(seed);

}

// blockies from Ethereum address seed { // "0xe686c14FF9C11038F2B1c9aD617F2346CFB817dC" // -> "0xe686c14ff9c11038f2b1c9ad617f2346cfb817dc" let addr = "0xe686c14FF9C11038F2B1c9aD617F2346CFB817dC" .canonicalize_ethaddr();

assert_eq!(
    addr,
    b"0xe686c14ff9c11038f2b1c9ad617f2346cfb817dc"
);

// Ethereum address seed: canonicalized before use
let blockies_data_from_eth_addr = eth_blockies_data(addr);

} ```

let seed = "0xe686c14FF9C11038F2B1c9aD617F2346CFB817dC" .canonicalize_ethaddr();

// get 2D array of (r, g, b) // dimension: 8 x 8 (nested-array of RgbPixel) { let blockiesdatargb = ethblockiesdata(&seed); }

// get 1D array of (r, g, b) // dimension: 64 x 1 (array of RgbPixel) { let blockiesdatargb = ethblockiesdata(&seed).flatten(); }

// get 2D array of grayscale { fn rgbtograyscale((r, g, b): RgbPixel) -> u8 { (r as f64 * 0.299 + g as f64 * 0.587 + b as f64 * 0.114) as u8 }

let blockies_data_grayscale =
    eth_blockies_data_mapped(&seed, rgb_to_grayscale);

}

// get (color palette, 2D array of color indices for each pixel) { let (colorpalette, paletteidxbitmap) = ethblockiesindexeddata(&seed);

assert_eq!(
    color_palette[palette_idx_bitmap[0][0]],
    (132, 222, 77)
);

} ```

let seed = "0xe686c14FF9C11038F2B1c9aD617F2346CFB817dC" .canonicalizeethaddr(); let dimension = (128, 128); // multiples of 8 recommended let compressedoutput = true; // false for an uncompressed png let imgpngdata = ethblockiespngdata(seed, dimension, compressedoutput);

use std::io::Write; std::fs::File::create("test-raw.png").unwrap() .writeall(&imgpng_data); ```

use web_sys::*;

let addr = "0xe686c14FF9C11038F2B1c9aD617F2346CFB817dC";

window() .andthen(|w| w.document()) .andthen(|doc| doc.body().zip(doc.createelement("img").ok())) .andthen(|(body, img)| { // create a new img html element with generated datauri img.setattribute("src", &ethblockiesdataurischeme(addr)) // then attach to body .andthen(|| body.append_child(&img)) .ok() }); ```

Binary

Install

console $ cargo install eth-blockies

Binary Usage

```text usage: eth-blockies [output-fmt (ansi|image)] [OPTIONS]...

Seed to generate blockies (e.g. Ethereum wallet address) [output-fmt] - ansi (Default) Generate ansi sequence of blockies, usually for printing to terminal - image Generate png image data of blockies

[OPTIONS]:

    -e --ethseed    Interpret seed string as Ethereum address,
                    and canonicalize seed (to lowercase + set '0x' prefix)
                    to get Ethereum blockies correctly
    -a --ascii      (only for 'ansi' mode)   Get non-compact, big blockies
                                             with ascii (non-unicode)
    -r --raw        (only for 'image' mode)  Get uncompressed, raw png image

    -d --dimension=<WIDTH>x<HEIGHT>
                    Dimensions of blockies in the form of '(width)x(height)'
                    If not given, following is used (Default):
                    - (only for 'ansi' mode)   '8x8'
                    - (only for 'image' mode)  '128x128'

    -o --outfile=<FILENAME>
                    File name to write output
                    If the parameter is not given, stdout is used (Default)

examples:

Author

Kim Hwiwon \

License

The MIT License (MIT)