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.
|
||||
if icon and Image:
|
||||
filename = icon.get_filename()
|
||||
remove_old = False
|
||||
with Image.open(filename) as img:
|
||||
new_filename = os.path.splitext(filename)[0] + '.png'
|
||||
if img.size > (16, 16):
|
||||
new_filename = filename.rpartition('.')[0] + '.png'
|
||||
img = img.resize((16, 16), Image.Resampling.LANCZOS)
|
||||
img.save(new_filename)
|
||||
if new_filename != filename:
|
||||
remove_old = True
|
||||
if remove_old:
|
||||
img.save(new_filename)
|
||||
if new_filename != filename:
|
||||
os.remove(filename)
|
||||
icon = TrackerIcon(new_filename)
|
||||
return icon
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue