Omnibus commited on
Commit
dd60d35
·
verified ·
1 Parent(s): 7ab3641

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -28,8 +28,8 @@ def get_concat_v_cut(in1, in2):
28
  im1=Image.open(in1)
29
  im2=Image.open(in2)
30
  dst = Image.new(
31
- 'RGB', (min(im1.width, im2.width), im1.height + im2.height+10), color = '#1a1f23')
32
- dst.paste(im1, (0, 10))
33
  dst.paste(im2, (0, im1.height+10))
34
  return dst
35
 
 
28
  im1=Image.open(in1)
29
  im2=Image.open(in2)
30
  dst = Image.new(
31
+ 'RGB', (min(im1.width, im2.width), im1.height + im2.height+20), color = '#1a1f23')
32
+ dst.paste(im1, (0, 0))
33
  dst.paste(im2, (0, im1.height+10))
34
  return dst
35