Legendsmith / Simple-Image-Sorter

Sorts images into destination files. Written in python.
17 stars 1 forks source link

Image.ANTIALIAS is outdated #10

Closed FraidOfWater closed 1 month ago

FraidOfWater commented 2 months ago

For Pillow (10.0.0 and later) canvasimage.py should edit its line:

self.__filter = Image.ANTIALIAS

to

self.__filter = Image.Resampling.LANCZOS

as new versions of PIL no longer support ANTIALIAS.