Metadata-Version: 2.4
Name: runescape-text
Version: 2.0.1
Summary: A program for generating runescape-chat-like images of text.
Home-page: https://github.com/sircinnamon/runescape-text
Author: Riley Lahd
Author-email: sircinnamon@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pillow>=10
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# runescape-text
Generates a gif of text based on runescape chatbox effects

If you long for the days of selling your rune scimmy:

`python runescapetext.py wave:glow1:This will generate a convincing replica`

![A convincing replica](https://imgur.com/XGM9rjr.gif)

Or as an import:
```python
import runescape_text as rst

img = rst.parse_string("wave:glow1:Hello World")
if(len(img)==1):
	rst.single_frame_save(img[0], file="out.png")
else:
	rst.multi_frame_save(img, file="out.gif")
```

A Discord bot implementing this has been broken out into a seperate repository. Find it [here](https://github.com/sircinnamon/runescape-text-discord).
