From 1374e47e07d94f85ac11b56cd84ac348198d6d8e Mon Sep 17 00:00:00 2001 From: Erik Thiele Date: Thu, 2 Jul 2026 16:02:46 +0200 Subject: [PATCH] Logo noch kleiner (w=20) --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 9ac2a34..24c1ce7 100644 --- a/app.py +++ b/app.py @@ -291,12 +291,12 @@ def invoice_pdf(): logo_name = config.get('logo', '') logo_path = os.path.join('static', logo_name) if logo_name else '' if logo_name and os.path.exists(logo_path): - pdf.image(logo_path, x=171, y=12, w=24) + pdf.image(logo_path, x=175, y=12, w=20) img_w, img_h = image_dimensions(logo_path) if img_w and img_h: - logo_bottom = 12 + 24 * (img_h / img_w) + 3 + logo_bottom = 12 + 20 * (img_h / img_w) + 3 else: - logo_bottom = 12 + 15 + 3 + logo_bottom = 12 + 12 + 3 else: pdf.set_font("Arial", "B", 18) pdf.set_xy(150, 12)