GDavila commited on
Commit
c99be85
1 Parent(s): 5d79737

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ else:
19
  my_hue_list = list( range(0, 180, color_step) ) #Color step basically gives step range of this list, ie if color_step = 2 then it is [0,2,4,6,....,178]
20
 
21
 
22
- st.text("Upload an image and this app will turn it into a GIF based on the slider values. Larger images will take longer to process, max image size under 2MB. Lower values of the color_step parameter will take longer to process. Refresh the page to reprocess an image under different parameters.")
23
  user_image_object = st.file_uploader("upload your image", type=['png', 'jpg'], accept_multiple_files=False)
24
 
25
  if user_image_object is not None:
 
19
  my_hue_list = list( range(0, 180, color_step) ) #Color step basically gives step range of this list, ie if color_step = 2 then it is [0,2,4,6,....,178]
20
 
21
 
22
+ st.write("Upload an image and this app will turn it into a GIF based on the slider values. Larger images will take longer to process, max image size under 2MB. Lower values of the color_step parameter will take longer to process. Refresh the page to reprocess an image under different parameters.")
23
  user_image_object = st.file_uploader("upload your image", type=['png', 'jpg'], accept_multiple_files=False)
24
 
25
  if user_image_object is not None: