natexcvi commited on
Commit
0ca7c58
1 Parent(s): 548eab2

Make image smaller

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ st.title("🤪 Facial Expression Sync Service")
13
 
14
  static_image = st.file_uploader("Upload image", type=["png", "jpg", "jpeg"])
15
  if static_image is not None:
16
- st.image(static_image, caption="Uploaded image", use_column_width="auto", width=200)
17
 
18
  img_file_buffer = st.camera_input("Take a picture")
19
 
 
13
 
14
  static_image = st.file_uploader("Upload image", type=["png", "jpg", "jpeg"])
15
  if static_image is not None:
16
+ st.image(static_image, caption="Uploaded image", width=200)
17
 
18
  img_file_buffer = st.camera_input("Take a picture")
19