Omnibus commited on
Commit
00e8f0c
·
verified ·
1 Parent(s): 3918466

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -24,7 +24,9 @@ def get_concat_h_cut(in1, in2):
24
  return dst
25
 
26
 
27
- def get_concat_v_cut(im1, im2):
 
 
28
  dst = Image.new(
29
  'RGB', (min(im1.width, im2.width), im1.height + im2.height))
30
  dst.paste(im1, (0, 0))
 
24
  return dst
25
 
26
 
27
+ 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))
32
  dst.paste(im1, (0, 0))