This is a simple encoder of images into audio samples by using the Robot 36 encoding. It is based on the C implementation of Ahmet
It works as a library so you can use in your rust project. You encode a DynamicImage into a vector of vector of i16 representing each sample of the audio. You can then use this sample to write to an audio file or directly into the audio output.
Bear in mind that this is still on the 0.1 version so breaking changes may and probably will happen!
```rust extern crate robot36-encoder;
use std::env; use encoder::Encoder;
/* Simple example.
* encode-image /path/to/image-input.png /path/to/audio-output.wav
*/
fn main() {
let args: Vec