Logo rechtsbundig (x=171, rechte Kante am Rand) wie Text darunter

This commit is contained in:
Erik Thiele
2026-07-02 15:41:43 +02:00
parent 0ef4ab6c5a
commit 85d382834b

2
app.py
View File

@@ -291,7 +291,7 @@ 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=165, y=5, w=24)
pdf.image(logo_path, x=171, y=5, w=24)
img_w, img_h = image_dimensions(logo_path)
if img_w and img_h:
logo_bottom = 5 + 24 * (img_h / img_w) + 3