mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-27 22:11:10 +00:00
18 lines
249 B
Markdown
18 lines
249 B
Markdown
|
# Encode/Decode Images
|
||
|
|
||
|
This is a Python script to encode/decode images. It uses base64 format to encode/decode images
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
#### Encode
|
||
|
|
||
|
```bash
|
||
|
python main.py -e <IMAGE_PATH>
|
||
|
```
|
||
|
|
||
|
#### Decode
|
||
|
|
||
|
```bash
|
||
|
python main.py -d <DESTINATION_PATH>
|
||
|
```
|