aika42 commited on
Commit
df91e20
·
verified ·
1 Parent(s): fcc2a65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -7,6 +7,8 @@ st.set_page_config(page_title="Image Filter App", layout="centered")
7
 
8
  st.title("🖼️ Simple Image Filter App")
9
  st.write("Upload a PNG or JPG image under 5MB to apply filters.")
 
 
10
 
11
  # File uploader with type restriction
12
  uploaded_file = st.file_uploader("Upload Image", type=["png", "jpg", "jpeg"])
 
7
 
8
  st.title("🖼️ Simple Image Filter App")
9
  st.write("Upload a PNG or JPG image under 5MB to apply filters.")
10
+ st.caption("📦 Only PNG or JPG under 5MB allowed.")
11
+
12
 
13
  # File uploader with type restriction
14
  uploaded_file = st.file_uploader("Upload Image", type=["png", "jpg", "jpeg"])