ginipick commited on
Commit
6782a4f
·
verified ·
1 Parent(s): ec1d587

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -4
app.py CHANGED
@@ -22,10 +22,6 @@ def create_border_decoration(qr_image, decoration_style="Flowers"):
22
  # Create new image with white background
23
  decorated_image = Image.new('RGB', (new_width, new_height), 'white')
24
 
25
- # Paste QR code in center
26
- decorated_image.paste(qr_image, (padding, padding))
27
-
28
-
29
  # Paste QR code in center
30
  decorated_image.paste(qr_image, (padding, padding))
31
 
 
22
  # Create new image with white background
23
  decorated_image = Image.new('RGB', (new_width, new_height), 'white')
24
 
 
 
 
 
25
  # Paste QR code in center
26
  decorated_image.paste(qr_image, (padding, padding))
27