mpetroff / pannellum

Pannellum is a lightweight, free, and open source panorama viewer for the web.
https://pannellum.org/
MIT License
4.16k stars 712 forks source link

Deprecation Warning: `ANTIALIAS is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.LANCZOS instead.` #1119

Closed strarsis closed 1 year ago

strarsis commented 1 year ago

When using recent Pillow, a deprecation warning occurs:

DeprecationWarning: ANTIALIAS is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.LANCZOS instead.

Edit: It is PIL.Image.Resampling.LANCZOS but not PIL.Image.LANZCOS, this is a relatively new feature, so changing it may break the tool for older Pillow versions.

mpetroff commented 1 year ago

I added a conditional check in 7d42e49d1024d65a75ebae5df708f19f42dce711, which will use the new syntax but only if Image.Resampling exists.

strarsis commented 1 year ago

@mpetroff: Awesome! This not only fixes the issue in the future, but also fully preserves backwards-compatibility.