hackshaw commited on
Commit
ad95b8b
·
verified ·
1 Parent(s): 068355c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +46 -0
app.py ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # app.py
2
+ import os
3
+ from PIL import Image
4
+ import streamlit as st
5
+ from utils import create_contact_sheet # Make sure to import the corrected function
6
+
7
+ st.set_page_config(
8
+ page_title="Contact sheet generator",
9
+ page_icon=None,
10
+ layout="wide",
11
+ initial_sidebar_state="auto"
12
+ )
13
+
14
+ accepted_extensions = (".jpg", ".jpeg", ".png")
15
+
16
+ def main():
17
+ st.title('Contact Sheet Generator')
18
+
19
+ output_dir = 'contact_sheets' # This should be a directory, not a file
20
+ image_files = st.file_uploader('Upload images', type=accepted_extensions, accept_multiple_files=True)
21
+
22
+ if st.button('Generate Contact Sheets'):
23
+ if image_files:
24
+ # Create the directory if it doesn't exist
25
+ os.makedirs("uploaded_images", exist_ok=True)
26
+
27
+ image_paths = []
28
+ for image_file in image_files:
29
+ file_path = os.path.join("uploaded_images", image_file.name)
30
+ with open(file_path, "wb") as f:
31
+ f.write(image_file.getbuffer())
32
+ image_paths.append(file_path)
33
+
34
+ num_sheets = create_contact_sheet(image_paths, output_dir)
35
+
36
+ # Display the contact sheets
37
+ for i in range(1, num_sheets + 1):
38
+ sheet_path = os.path.join(output_dir, f'contact_sheet_{i}.jpg')
39
+ st.image(sheet_path, caption=f'Generated Contact Sheet {i}', use_column_width=True)
40
+
41
+ # Clean up uploaded images
42
+ for file_path in image_paths:
43
+ os.remove(file_path)
44
+
45
+ if __name__ == "__main__":
46
+ main()