base64_img_cli 0.1.0

Encode and decode images to and from base64
# Convert excel file to csv file

[![Crates.io](https://img.shields.io/crates/v/loa.svg)](https://crates.io/crates/base64_img_cli)
[![Rust](https://img.shields.io/badge/rust-1.56.1%2B-blue.svg?maxAge=3600)](https://gitlab.com/andrew_ryan/base64_img_cli)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitlab.com/andrew_ryan/base64_img_cli/-/raw/master/LICENSE)
```
## install

```sh
cargo install base64_img_cli
```

```bash
base64_img_cli Image Encoder Decoder 1.0
Your Name <your.email@example.com>
Encode and decode images to and from base64
Example:
base64_img_cli -i img.jpeg -e > base64_img.txt
base64_img_cli -i base64_img.txt -d

USAGE:
    base64_img_cli [FLAGS] [OPTIONS]

FLAGS:
    -d, --decode     Decode the input base64 string to an image
    -e, --encode     Encode the input image to base64
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -i, --input <FILE>    Sets the input file path
```