lockscreen background

This commit is contained in:
Zacharias-Brohn
2025-12-05 19:45:15 +01:00
parent 563d881d6f
commit 64fc68cc3a
11 changed files with 211 additions and 168 deletions
+3
View File
@@ -3,8 +3,11 @@ import argparse
def gen_blurred_image(input_image, output_path):
img = Image.open(input_image)
size = img.size
img = img.resize((size[0] // 2, size[1] // 2), Image.NEAREST)
img = img.filter(ImageFilter.GaussianBlur(40))
# img = img.resize(size, Image.LANCZOS)
img.save(output_path, "PNG")