smartcrop.py icon indicating copy to clipboard operation
smartcrop.py copied to clipboard

Fix Image.ANTIALIAS deprecation

Open GjjvdBurg opened this issue 2 years ago • 0 comments

Pillow is in the process of migrating the Image.ANTIALIAS constant to Image.Resampling.LANCZOS, and is showing DeprecationWarnings when running smartcrop.py:

python smartcrop.py ./tests/images/travel-1.jpg /tmp/out.jpg
./smartcrop.py:160: DeprecationWarning: ANTIALIAS is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.LANCZOS instead.
# repeated

This PR implements the suggested fix. Thanks for your help!

GjjvdBurg avatar Jun 14 '22 21:06 GjjvdBurg