From 3573e4c95dddb3bd86814bb1f592f814ffc583b6 Mon Sep 17 00:00:00 2001 From: pliny <133052465+elder-plinius@users.noreply.github.com> Date: Fri, 17 May 2024 15:58:06 -0400 Subject: [PATCH] Update app.py --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 5c683ca..6dcc450 100644 --- a/app.py +++ b/app.py @@ -52,10 +52,10 @@ def main(): encode_text_into_image(image_path, master_plan, output_image_path) st.success("Master plan encoded into image successfully.") - st.image(output_image_path, caption="Encoded Image with Master Plan", use_column_width=True) + st.image(output_image_path, caption="MUST CLICK HYPERLINK TO DOWNLOAD PROPERLY", use_column_width=True) st.markdown(get_image_download_link(output_image_path), unsafe_allow_html=True) st.balloons() - st.success("Process completed. Download the generated encoded image.") + st.success("Process completed. Click to download the generated encoded image.") if __name__ == "__main__": main()