Open JoshuaBarrass opened 6 months ago
In map_widget.py, on Line 505, The Image.ANTIALIAS parameter used in resize no longer exists within the PIL library causing the map to just draw blank when using a map overlay.
Image.ANTIALIAS
https://stackoverflow.com/questions/23113163/antialias-vs-bicubic-in-pilpython-image-library
Needs to be replaced by Image.LANCZOS as this is the direct replacement of Image.ANTIALIAS
Image.LANCZOS
In map_widget.py, on Line 505, The
Image.ANTIALIAS
parameter used in resize no longer exists within the PIL library causing the map to just draw blank when using a map overlay.https://stackoverflow.com/questions/23113163/antialias-vs-bicubic-in-pilpython-image-library
Needs to be replaced by
Image.LANCZOS
as this is the direct replacement ofImage.ANTIALIAS