Make the QR code appear 2/3rds of the way to the right
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def resize_for_condition_image(input_image: Image.Image, resolution: int, canvas
|
|
60 |
canvas = Image.new("RGB", (canvas_width, canvas_height), "white")
|
61 |
|
62 |
# Paste the resized QR code on the right half of the canvas
|
63 |
-
qr_x = canvas_width // 2 #
|
64 |
qr_y = (canvas_height - H) // 2 # Center the QR code vertically
|
65 |
canvas.paste(input_image, (qr_x, qr_y))
|
66 |
return canvas
|
|
|
60 |
canvas = Image.new("RGB", (canvas_width, canvas_height), "white")
|
61 |
|
62 |
# Paste the resized QR code on the right half of the canvas
|
63 |
+
qr_x = int(canvas_width * (2 / 3)) - (W // 2) # 2/3rd of the canvas width, centering the QR code
|
64 |
qr_y = (canvas_height - H) // 2 # Center the QR code vertically
|
65 |
canvas.paste(input_image, (qr_x, qr_y))
|
66 |
return canvas
|