add pyvips

pyvips is a binding for the libvips image processing library. It's
fast and only needs a little memory. For example, on this benchmark:

https://github.com/jcupitt/libvips/wiki/Speed-and-memory-use

It's 3x faster than ImageMagick and needs 5x less memory.

pyvips works on all python versions on all platforms, is LGPL, can be
simply installed with pip, has complete documentation, has a large test
suite and has no memory leaks.
This commit is contained in:
John Cupitt 2018-08-04 12:39:44 +01:00
parent 7a7041531a
commit 93c18d44f6

View File

@ -720,6 +720,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
* [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing.
* [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images. * [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images.
* [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. * [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick.
* [pyvips](https://github.com/jcupitt/pyvips/) - A fast image processing library with low memory needs.
## Implementations ## Implementations