Metadata-Version: 2.1
Name: rectify
Version: 2.2
Summary: Bars generator
Home-page: https://gitlab.com/jenx/rectify/
Author: Ivana Kellyerova
Author-email: ivana.kellyerova@rectify.amarion.net
License: MIT
Keywords: image,bars,stripe,avatar,generator,rectangle,colors
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Artistic Software
Classifier: Topic :: Multimedia :: Graphics
Description-Content-Type: text/markdown
Requires-Dist: docopt (>=0.6.2)
Requires-Dist: Pillow (>=5.3.0)
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinxcontrib-napoleon ; extra == 'docs'

![rectify image](https://gitlab.com/jenx/rectify/raw/master/images/header.png "rectify")

# rectify

``rectify`` is a tiny Python package whose sole purpose of life is generating
randomized images with colorful bars on a single-color background. Making,
displaying and saving a picture like the one on the top of this page is as
simple as:

    from rectify.image import generate, save

    picture = generate(900, 30, background=(30, 30, 30), colors='pastel')

    picture.show()
    save(picture, 'bars.png')

Or from the command line:

    $ rectify -x 900 -y 30 -b '(30,30,30)' -c pastel -o 'bars.png' --show

Full documentation is available at
[jenx.gitlab.io/rectify](https://jenx.gitlab.io/rectify/).


