dginovker commited on
Commit
70cdd75
·
verified ·
1 Parent(s): 5ec85b0

fix transpanreyc error

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -44,7 +44,7 @@ pipe.enable_xformers_memory_efficient_attention()
44
 
45
 
46
  def resize_for_condition_image(input_image: Image.Image, resolution: int, canvas_width: int = None, canvas_height: int = None):
47
- input_image = input_image.convert("RGB")
48
  W, H = input_image.size
49
 
50
  # Create a blank canvas with the specified dimensions
@@ -66,7 +66,9 @@ def resize_for_condition_image(input_image: Image.Image, resolution: int, canvas
66
  # Paste the resized QR code 2/3rds of the way over the canvas
67
  qr_x = int(canvas_width * (2 / 3)) - (W // 2) # Adjust x-coordinate to 2/3 of the canvas
68
  qr_y = (canvas_height - H) // 2 # Center the QR code vertically
69
- canvas.paste(input_image, (qr_x, qr_y), input_image)
 
 
70
  return canvas
71
 
72
 
 
44
 
45
 
46
  def resize_for_condition_image(input_image: Image.Image, resolution: int, canvas_width: int = None, canvas_height: int = None):
47
+ input_image = input_image.convert("RGBA") # Ensure the image has an alpha channel
48
  W, H = input_image.size
49
 
50
  # Create a blank canvas with the specified dimensions
 
66
  # Paste the resized QR code 2/3rds of the way over the canvas
67
  qr_x = int(canvas_width * (2 / 3)) - (W // 2) # Adjust x-coordinate to 2/3 of the canvas
68
  qr_y = (canvas_height - H) // 2 # Center the QR code vertically
69
+
70
+ # Use the alpha channel of the input_image as the mask
71
+ canvas.paste(input_image, (qr_x, qr_y), input_image.split()[3]) # Alpha channel as mask
72
  return canvas
73
 
74