Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wagtail/Willow
A wrapper that combines the functionality of multiple Python image libraries into one API
https://github.com/wagtail/Willow
Last synced: 23 days ago
JSON representation
A wrapper that combines the functionality of multiple Python image libraries into one API
- Host: GitHub
- URL: https://github.com/wagtail/Willow
- Owner: wagtail
- License: bsd-3-clause
- Created: 2014-10-31T17:02:10.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2024-10-26T22:05:01.000Z (about 2 months ago)
- Last Synced: 2024-10-28T01:44:57.256Z (about 2 months ago)
- Language: Python
- Homepage: https://willow.wagtail.org/
- Size: 20.6 MB
- Stars: 274
- Watchers: 28
- Forks: 53
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - Willow - A unified interface for Python image libraries (Pillow, Wand and OpenCV) (Python)
README
# [Willow image library](https://pypi.org/project/Willow/)
[![PyPI](https://img.shields.io/pypi/v/Willow.svg)](https://pypi.org/project/Willow/)
[![PyPI downloads](https://img.shields.io/pypi/dm/Willow.svg)](https://pypi.org/project/Willow/)
[![Build Status](https://github.com/torchbox/Willow/workflows/CI/badge.svg)](https://github.com/wagtail/Willow/actions)A wrapper that combines the functionality of multiple Python image libraries into one API.
[Documentation](https://willow.wagtail.org)
## Overview
Willow is a simple image library that combines the APIs of [Pillow](https://pillow.readthedocs.io/), [Wand](https://docs.wand-py.org) and [OpenCV](https://opencv.org/).
It converts the image between the libraries when necessary.Willow currently has basic resize and crop operations, face and feature detection and animated GIF support.
New operations and library integrations can also be [easily implemented](https://willow.wagtail.org/latest/guide/extend.html).The library is written in pure Python and supports versions 3.9, 3.10, 3.11, 3.12, and 3.13.
## Examples
### Resizing an image
```python
from willow.image import Imagef = open('test.png', 'rb')
img = Image.open(f)# Resize the image to 100x100 pixels
img = img.resize((100, 100))# Save it
with open('test_thumbnail.png', 'wb') as out:
img.save_as_png(out)
```This will open the image file with Pillow or Wand (if Pillow is unavailable).
It will then resize it to 100x100 pixels and save it back out as a PNG file.
### Detecting faces
```python
from willow.image import Imagef = open('photo.png', 'rb')
img = Image.open(f)# Find faces
faces = img.detect_faces()
```Like above, the image file will be loaded with either Pillow or Wand.
As neither Pillow nor Wand support detecting faces, Willow would automatically convert the image to OpenCV and use that to perform the detection.
## Available operations
[Documentation](https://willow.wagtail.org/latest/guide/operations.html)
| Operation | Pillow | Wand | OpenCV |
| ------------------------------------------------ | ------ | ---- | ------ |
| `get_size()` | ✓ | ✓ | ✓ |
| `get_frame_count()` | ✓\*\* | ✓ | ✓\*\* |
| `resize(size)` | ✓ | ✓ | |
| `crop(rect)` | ✓ | ✓ | |
| `rotate(angle)` | ✓ | ✓ | |
| `set_background_color_rgb(color)` | ✓ | ✓ | |
| `transform_colorspace_to_srgb(rendering_intent)` | ✓ | | |
| `auto_orient()` | ✓ | ✓ | |
| `save_as_jpeg(file, quality)` | ✓ | ✓ | |
| `save_as_png(file)` | ✓ | ✓ | |
| `save_as_gif(file)` | ✓ | ✓ | |
| `save_as_webp(file, quality)` | ✓ | ✓ | |
| `save_as_heic(file, quality, lossless)` | ✓⁺ | | |
| `save_as_avif(file, quality, lossless)` | ✓⁺ | ✓⁺ | |
| `save_as_ico(file)` | ✓ | ✓ | |
| `has_alpha()` | ✓ | ✓ | ✓\* |
| `has_animation()` | ✓\* | ✓ | ✓\* |
| `get_pillow_image()` | ✓ | | |
| `get_wand_image()` | | ✓ | |
| `detect_features()` | | | ✓ |
| `detect_faces(cascade_filename)` | | | ✓ |\* Always returns `False`
\*\* Always returns `1`
⁺ Requires the [pillow-heif](https://pypi.org/project/pillow-heif/) library