Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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"])
|