Logo 40% kleiner (w=24, x=165)
This commit is contained in:
6
app.py
6
app.py
@@ -291,12 +291,12 @@ def invoice_pdf():
|
|||||||
logo_name = config.get('logo', '')
|
logo_name = config.get('logo', '')
|
||||||
logo_path = os.path.join('static', logo_name) if logo_name else ''
|
logo_path = os.path.join('static', logo_name) if logo_name else ''
|
||||||
if logo_name and os.path.exists(logo_path):
|
if logo_name and os.path.exists(logo_path):
|
||||||
pdf.image(logo_path, x=155, y=5, w=40)
|
pdf.image(logo_path, x=165, y=5, w=24)
|
||||||
img_w, img_h = image_dimensions(logo_path)
|
img_w, img_h = image_dimensions(logo_path)
|
||||||
if img_w and img_h:
|
if img_w and img_h:
|
||||||
logo_bottom = 5 + 40 * (img_h / img_w) + 3
|
logo_bottom = 5 + 24 * (img_h / img_w) + 3
|
||||||
else:
|
else:
|
||||||
logo_bottom = 5 + 25 + 3
|
logo_bottom = 5 + 15 + 3
|
||||||
else:
|
else:
|
||||||
pdf.set_font("Arial", "B", 18)
|
pdf.set_font("Arial", "B", 18)
|
||||||
pdf.set_xy(150, 15)
|
pdf.set_xy(150, 15)
|
||||||
|
|||||||
Reference in New Issue
Block a user