Metadata-Version: 2.1
Name: pillow-stackblur
Version: 0.0.2
Summary: The Pillow filter for Stack Blur.
Home-page: https://github.com/dldevinc/pillow-stackblur
Author: Jones Chi
Author-email: duguschi@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.5.0,<3.8.0
Description-Content-Type: text/markdown
Requires-Dist: pillow
Provides-Extra: optional


pillow-stackblur
================

The Stack Blur filter for Pillow.

The Stack Blur Algorithm was invented by Mario Klingemann,
mario@quasimondo.com and described here:
http://incubator.quasimondo.com/processing/fast_blur_deluxe.php

This original C++ RGBA (32 bit color) multi-threaded version
by Victor Laskin (victor.laskin@gmail.com) could be found here:
http://vitiy.info/stackblur-algorithm-multi-threaded-blur-for-cpp

The python implementation is porting from C++ multi-threaded version.
And wrap the implementation as a filter for pillow.

Example:
--------
Blur the image with radius 10.
```python
from PIL import Image
from stackblur import StackBlur
im = Image.open('img.png')
im = im.filter(StackBlur(10))
im.save('blurred_img.png')
```

Installation:
-------------
    pip install pillow-stackblur

Please remember to install `pillow` before using this library.


