Metadata-Version: 2.1
Name: i2b
Version: 2.0.0
Summary: Convert image into base64 string and store into the txt file
Home-page: https://github.com/sachinchavan9/image-encode-decode
Author: Sachin Chavan
Author-email: sachinewx@gmail.com
License: UNKNOWN
Keywords: image base64 jpg png jpeg JPG JPEG TIF
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Artistic Software
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# IMAGE TO _BASE64 STRING_

## Convert Image into base64 format.

### Supprted image format is:

* _**jpg**_
* _**png**_
* _**jpeg**_
* _**JPG**_
* _**JPEG**_
* _**TIF**_

### Install Package
Install package from
[pypi.org](https://pypi.org/project/img2b64/)
```
pip install img2b64
```
### Usage

```
img2b64.py -h
usage: img2b64.py [-h] [-i IMG]

Convert Image into base64 format, supported format is jpg and png.

optional arguments:
  -h, --help         show this help message and exit
  -i IMG, --img IMG  Input image or image path to convert into base64
```


