mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-03 19:07:47 +03:00
[UI] Convert all ico to png format for tracker icon
Closes: https://github.com/deluge-torrent/deluge/pull/472
This commit is contained in:
parent
98d01fbe35
commit
0b5addf58e
1 changed files with 3 additions and 6 deletions
|
@ -461,15 +461,12 @@ class TrackerIcons(Component):
|
||||||
# Requires Pillow(PIL) to resize.
|
# Requires Pillow(PIL) to resize.
|
||||||
if icon and Image:
|
if icon and Image:
|
||||||
filename = icon.get_filename()
|
filename = icon.get_filename()
|
||||||
remove_old = False
|
|
||||||
with Image.open(filename) as img:
|
with Image.open(filename) as img:
|
||||||
|
new_filename = os.path.splitext(filename)[0] + '.png'
|
||||||
if img.size > (16, 16):
|
if img.size > (16, 16):
|
||||||
new_filename = filename.rpartition('.')[0] + '.png'
|
|
||||||
img = img.resize((16, 16), Image.Resampling.LANCZOS)
|
img = img.resize((16, 16), Image.Resampling.LANCZOS)
|
||||||
img.save(new_filename)
|
img.save(new_filename)
|
||||||
if new_filename != filename:
|
if new_filename != filename:
|
||||||
remove_old = True
|
|
||||||
if remove_old:
|
|
||||||
os.remove(filename)
|
os.remove(filename)
|
||||||
icon = TrackerIcon(new_filename)
|
icon = TrackerIcon(new_filename)
|
||||||
return icon
|
return icon
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue