Metadata-Version: 2.1
Name: fff-profile-picture
Version: 2.0.4
Summary: A Module to generate profile pictures
Home-page: UNKNOWN
Author: Alwin Lohrie (Niwla23)
Author-email: alwin@kat-zentrale.de
License: LGPL
Keywords: fff,fridaysforfuture,profilepicture,generator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: Pillow

# FFF Profile Picture Lib
## What is it?
A library to generate profile pictures

## Example
```python
from fff_profile_picture import Generator
from PIL import Image

generator = Generator(Image.open("original.JPG"), Image.open("overlay.png"))
result = generator.process()
result.save("generated.png")
```

## Docs

https://fff-bots.gitlab.io/fff-profile-picture-python/



