Remove GdkPixbuf hack

This commit is contained in:
kramo
2023-05-05 17:40:22 +02:00
parent cd396a4bf8
commit 15fc6292b6
3 changed files with 2 additions and 9 deletions

View File

@@ -73,8 +73,8 @@ class GameCover:
with Image.open(self.path) as image:
image = (
image.convert("RGB")
.resize((10, 15))
.filter(ImageFilter.GaussianBlur(2))
.resize((100, 150))
.filter(ImageFilter.GaussianBlur(20))
)
tmp_path = Gio.File.new_tmp(None)[0].get_path()