Metadata-Version: 2.1
Name: Timage
Version: 0.0.2
Summary: Hide text into image
Home-page: https://github.com/HaykSD/Text-into-image
Author: Hayk Sardaryan
Author-email: <hayk4536@gmail.com>
License: UNKNOWN
Keywords: python,steganography,text image,text coder
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: Pillow


# Text into image

Under construction!  Currently experimenting and planning!

Developed by Hayk Sardaryan (c) 2021

## Examples of How To Use (Buggy Alpha Version)


```python
from Timage import Text2Image

T = Text2Image()
```
create image and text file ex. "img.jpg" and "abc.txt" 
```python
T.code('abc.txt', 'img.jpg')
```

You will receive: s_img.png file, it's a coded image

For decode you can use
```python
T.decode('s_im.png',secret_filename='secret.txt', max_char=2500)
```
You will receive: secret.txt file, it's a secret text



