Metadata-Version: 2.1
Name: pointillism
Version: 0.1.2
Summary: Pointillism-style photo manipulation package
Home-page: https://github.com/tsennott/pointillism
Author: Tim Sennott
Author-email: timothy.sennott@gmail.com
License: MIT
Description: Image manipulation for various "pointillism" effects, built from scratch in Python. Image handling courtesy of Pillow. 
        
        Under active development. Please let me know if you have feedback.
        
        ## Web app version
        Currently deployed via Django on AWS Elastic beanstalk at [pointillizer.com](http://www.pointillizer.com)
        
        ## Examples and usage
        See detailed example usage in `Pointillism Example Usage.ipynb` [notebook](https://github.com/tsennott/pointillism/blob/master/Pointillism%20Example%20Usage.ipynb)
        
        See example images in google [album](https://photos.app.goo.gl/Dv6IObEJnsxKI3bn1)
        
        ## Installation
        Install with `pip install pointillism`
        
        ## Modules
        * `pointillism.image`: core image methods for pointilling
        * `pointillism.pipeline`: methods for making image manipulation pipelines and gifs
        * `pointillism.batch`: batch processing of images or gifs in parallel
        * `pointillism.movies`: (coming soon)
        
        ## Basic usage
        Making a pointillized image with default presets 
        ```
        # Import 
        import pointillism as pt
        
        # Initialize
        point = pt.image(image_location)
        
        # Render
        # optional setting can be 'balanced', 'fine', 'ultrafine', 'coarse', or 'uniform'
        point.make() 
        
        # Save
        # or point.display() if using IPython
        point.save_out(image_location) 
        ```
        
        
Keywords: image manipulation art photos pointillism illustration graphics
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
