png-framing 0.4.0

Encoding and decoding PNG images. That's it.
Documentation

A simple PNG serialization library.

A (Tiny) Example

use png_framing::Png;

// A tiny image.
let bytes = vec![255, 0, 0, 255, 0, 0, 255, 255]; 
let (width, height) = (2, 1);

// Save it!
Png::from_bytes(width, height, bytes).save("sollux.png");