Skip to content

Commit

Permalink
replace depracated antialias with lanczos (#2488)
Browse files Browse the repository at this point in the history
  • Loading branch information
workaryangupta authored Aug 29, 2024
1 parent f0d58ce commit e047571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mslib/msui/wms_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ def append_multiple_images(self, imgs):
current_height += image.height

if max_height < result.height:
result.thumbnail((result.width, max_height), Image.ANTIALIAS)
result.thumbnail((result.width, max_height), Image.LANCZOS)
return result


Expand Down

0 comments on commit e047571

Please sign in to comment.