JaredBailey commited on
Commit
f070a85
·
verified ·
1 Parent(s): 93ac523

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -44,7 +44,9 @@ _, row3_col2, row3_col3, row3_col4, row3_col5, _ = st.columns([8,3,3,3,3,8])
44
 
45
  image_path = "/home/user/app/test/"
46
  with row2_col2:
47
- st.image(ImageOps.exif_transpose(image_path + "IMG_5356.JPG"), use_column_width=True)
 
 
48
  with row3_col2:
49
  st.image(image_path + "IMG_5357.JPG", use_column_width=True)
50
  with row2_col3:
 
44
 
45
  image_path = "/home/user/app/test/"
46
  with row2_col2:
47
+ img_1 = Image.open(image_path + "IMG_5356.JPG")
48
+ img_1 = ImageOps.exif_transpose(img_1)
49
+ st.image(img_1, use_column_width=True)
50
  with row3_col2:
51
  st.image(image_path + "IMG_5357.JPG", use_column_width=True)
52
  with row2_col3: