From fe738a797475131487d58ef2401be6a044629fb6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 22 Jul 2024 19:49:07 +0100 Subject: [PATCH] Reduce opacity --- daemon_post_receive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon_post_receive.py b/daemon_post_receive.py index 453428f3e..82ab4524a 100644 --- a/daemon_post_receive.py +++ b/daemon_post_receive.py @@ -83,7 +83,7 @@ def _apply_watermark_to_image(base_dir: str, nickname: str, domain: str, if not os.path.isfile(watermark_filename): return False cmd = \ - '/usr/bin/composite -watermark 75% -gravity east ' + \ + '/usr/bin/composite -watermark 20% -gravity east ' + \ safe_system_string(watermark_filename) + ' ' + \ safe_system_string(post_image_filename) + ' ' + \ safe_system_string(post_image_filename + '.watermarked')