summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pyggle18
1 files changed, 3 insertions, 15 deletions
diff --git a/bin/pyggle b/bin/pyggle
index 3b2e0ff..662061f 100755
--- a/bin/pyggle
+++ b/bin/pyggle
@@ -191,7 +191,7 @@ class Thumbnail:
im = im.convert("RGB")
im.save(self.thumbname, "JPEG")
- if args.with_detail_page:
+ if args.with_detail_page and 0:
self.average_color = im.resize((1, 1)).getpixel((0, 0))
self.luminance = im.convert("L").getpixel((0, 0))
@@ -359,20 +359,8 @@ class Thumbnail:
def to_detail_html(self, html_prefix, html_postfix):
with open(f"{self.filename}.html", "w") as f:
- prefix = html_prefix.replace("<!-- $title -->", self.filename)
- r, g, b = self.average_color
- prefix = prefix.replace(
- "<html>", f"""<html style="background-color: #{r:02x}{g:02x}{b:02x}">"""
- )
- prefix = prefix.replace(
- "<body>", f"""<body style="background-color: #{r:02x}{g:02x}{b:02x}">"""
- )
- if self.luminance >= 127:
- prefix = prefix.replace("<!-- $theme -->", "light")
- else:
- prefix = prefix.replace("<!-- $theme -->", "dark")
- f.write(prefix)
- f.write(self.html.to_detail_html(self.filename, self.exif_tag))
+ f.write(html_prefix.replace("<!-- $title -->", self.filename))
+ f.write(self.html.to_detail_html(self.filename))
f.write(html_postfix)