From 842cdba7957b54c69076b2d359fceda34d48a638 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sat, 20 Jun 2026 15:51:30 -0700 Subject: [PATCH] Upscale photos --- immich_photo_renderer.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/immich_photo_renderer.py b/immich_photo_renderer.py index 2c18773..d1ed89f 100644 --- a/immich_photo_renderer.py +++ b/immich_photo_renderer.py @@ -299,8 +299,11 @@ class immich_photo_renderer(renderer.abstaining_renderer): .photo-pane img {{ max-width: 100%; max-height: 100%; + min-width: 60%; /* force upscale */ + min-height: 50%; /* tweak to taste object-fit: contain; box-shadow: 0 0 50px rgba(0,0,0,0.5); + image-rendering: auto; /* browser uses bilinear/bicubic */ }} /* --- Info Pane Logic --- */ .info-pane {{ -- 2.54.0