-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_viewer.py
453 lines (366 loc) · 17.2 KB
/
image_viewer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
import tkinter as tk
from tkinter import filedialog, messagebox, simpledialog
from PIL import Image, ImageTk
import random
import base64
from io import BytesIO
import os
import sys
class Save:
def __init__(self, image_list):
self.image_list = image_list
self.save_directory = "saved_collection"
def save_image_paths(self, parent):
"""Save the current image paths to a text file."""
if not self.image_list:
messagebox.showinfo("No Images", "There are no images to save.")
return
# Ensure the save directory exists
if not os.path.exists(self.save_directory):
os.makedirs(self.save_directory)
# Get the list of existing collections without the .txt extension
collections = [
f[:-4] for f in os.listdir(self.save_directory) if f.endswith(".txt")
]
# Create a popup window for saving
dialog = tk.Toplevel(parent)
dialog.title("Save Collection")
dialog.geometry("400x300")
dialog.transient(parent)
dialog.grab_set() # Make the dialog modal
# Center the dialog on the screen
screen_width = dialog.winfo_screenwidth()
screen_height = dialog.winfo_screenheight()
x_offset = (screen_width // 2) - 200
y_offset = (screen_height // 2) - 150
dialog.geometry(f"400x300+{x_offset}+{y_offset}")
tk.Label(dialog, text="Existing Collections:").pack(pady=5)
# Listbox to display existing collection names
listbox = tk.Listbox(dialog, selectmode=tk.SINGLE)
for collection in collections:
listbox.insert(tk.END, collection)
listbox.pack(fill=tk.BOTH, expand=True, padx=10, pady=5)
tk.Label(dialog, text="Enter a name for your collection:").pack(pady=5)
entry = tk.Entry(dialog)
entry.pack(padx=10, pady=5)
entry.focus_set() # Automatically focus on the entry field
def save_collection():
"""Save the current image paths to the specified file."""
collection_name = entry.get().strip()
if not collection_name:
messagebox.showerror("Error", "Collection name cannot be empty.")
return
file_path = os.path.join(self.save_directory, f"{collection_name}.txt")
try:
with open(file_path, "w") as file:
file.write("\n".join(self.image_list))
messagebox.showinfo("Success", f"Collection saved as {collection_name}.txt.")
dialog.destroy()
except Exception as e:
messagebox.showerror("Error", f"Failed to save collection: {e}")
# Bind Enter key to save action
dialog.bind("<Return>", lambda event: save_collection())
# OK button to save the collection
tk.Button(dialog, text="OK", command=save_collection).pack(side=tk.RIGHT, padx=10, pady=10)
# Cancel button to close the dialog
tk.Button(dialog, text="Cancel", command=dialog.destroy).pack(side=tk.RIGHT, padx=10, pady=10)
dialog.wait_window() # Wait for the dialog to close
class Retrieve:
def __init__(self):
self.save_directory = "saved_collection"
def retrieve_image_paths(self, parent):
"""Load image paths from a saved collection."""
# Ensure the save directory exists
if not os.path.exists(self.save_directory):
messagebox.showinfo("No Collections", "No saved collections found.")
return []
# Get the list of saved collections without the .txt extension
collections = [
f[:-4] for f in os.listdir(self.save_directory) if f.endswith(".txt")
]
if not collections:
messagebox.showinfo("No Collections", "No saved collections found.")
return []
# Create a popup window with a list of collections
dialog = tk.Toplevel(parent)
dialog.title("Select a Collection")
dialog.geometry("300x300")
dialog.transient(parent)
dialog.grab_set() # Make the dialog modal
# Center the dialog on the screen
screen_width = dialog.winfo_screenwidth()
screen_height = dialog.winfo_screenheight()
x_offset = (screen_width // 2) - 150
y_offset = (screen_height // 2) - 150
dialog.geometry(f"300x300+{x_offset}+{y_offset}")
tk.Label(dialog, text="Select a collection:").pack(pady=10)
# Listbox to display collection names
listbox = tk.Listbox(dialog, selectmode=tk.SINGLE)
for collection in collections:
listbox.insert(tk.END, collection)
listbox.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
selected_image_paths = []
def load_collection():
"""Callback to load the selected collection."""
selection = listbox.curselection()
if selection:
selected_name = listbox.get(selection[0])
file_path = os.path.join(self.save_directory, f"{selected_name}.txt")
if not os.path.exists(file_path):
messagebox.showerror("Error", "Selected collection does not exist.")
return
# Load the image paths from the file
try:
with open(file_path, "r") as file:
image_paths = file.read().splitlines()
messagebox.showinfo("Success", f"Loaded collection: {selected_name}")
selected_image_paths.extend(image_paths)
dialog.destroy() # Close the dialog
except Exception as e:
messagebox.showerror("Error", f"Failed to load collection: {e}")
else:
messagebox.showerror("Error", "No collection selected.")
# Bind the "Enter" key to confirm selection
dialog.bind("<Return>", lambda event: load_collection())
# OK button to confirm selection
tk.Button(dialog, text="OK", command=load_collection).pack(side=tk.RIGHT, padx=10, pady=10)
# Wait for the dialog to close
dialog.wait_window()
# Return the loaded paths
return selected_image_paths
class Slideshow:
def __init__(self, root, images):
# Initialize slideshow window
self.root = tk.Toplevel(root)
self.root.attributes("-fullscreen", True) # Make it fullscreen
self.images = images
self.current_index = 0
self.running = True
self.parent = root # Reference to the main window
# Label to display images in the slideshow
self.image_area = tk.Label(self.root, bg="black")
self.image_area.pack(fill=tk.BOTH, expand=True)
# Ensure the slideshow window is in focus
self.root.focus_set()
# Ask the user for the slideshow interval (in seconds)
self.interval = self.get_slideshow_interval()
# Bind the Escape key to exit fullscreen mode
self.root.bind("<Escape>", self.exit_fullscreen)
# Start the slideshow by showing the first image
self.show_image(self.current_index)
self.schedule_next_image()
def get_slideshow_interval(self):
"""Prompt the user to enter the slideshow interval."""
try:
# Ask user for the interval in seconds
interval = simpledialog.askinteger(
"Slideshow Interval",
"Enter the time (in seconds) for each slide:",
minvalue=1,
maxvalue=60,
parent=self.root, # Attach dialog to slideshow window
)
return interval if interval else 3 # Default to 3 seconds if no input
except Exception:
return 3 # Fallback to default interval
def show_image(self, index):
"""Display the current image based on index."""
try:
image_path = self.images[index]
image = Image.open(image_path)
# Get the screen dimensions for resizing the image
screen_width = self.root.winfo_screenwidth()
screen_height = self.root.winfo_screenheight()
# Resize image to fit screen size
image.thumbnail((screen_width, screen_height))
self.current_image = ImageTk.PhotoImage(image)
# Update the label with the image
self.image_area.config(image=self.current_image)
except Exception as e:
# Display error if the image can't be loaded
messagebox.showerror("Error", f"Failed to load image: {e}")
self.exit_fullscreen()
def schedule_next_image(self):
"""Schedule the next image after the current interval."""
if self.running and self.images:
# Update index to show the next image
self.current_index = (self.current_index + 1) % len(self.images)
self.root.after(self.interval * 1000, self.show_next_image) # Delay in ms
def show_next_image(self):
"""Show the next image and schedule the next frame."""
if self.running:
self.show_image(self.current_index)
self.schedule_next_image()
def exit_fullscreen(self, event=None):
"""Stop the slideshow and exit fullscreen mode."""
self.running = False
self.root.destroy() # Close the slideshow window
self.parent.focus_force() # Return focus to the main window
class ImageViewerApp:
def __init__(self, root):
self.root = root
self.root.title("Image Viewer")
self.root.state("zoomed") # Start window maximized
self.root.minsize(800, 600) # Set minimum window size
# Set the custom window icon
self.set_window_icon()
# Initialize image list and index
self.array_images = []
self.current_image_index = 0
# UI Setup
self.setup_menu()
self.setup_layout()
# Bind keyboard shortcuts for navigation
self.root.bind("<Left>", lambda event: self.show_previous_image()) # Left arrow
self.root.bind("<Right>", lambda event: self.show_next_image()) # Right arrow
def set_window_icon(self):
"""Set the window icon using an embedded base64 string."""
icon_base64 = self.get_icon_data() # Use the icon data from the method
try:
# Decode the base64 string to binary data
icon_data = base64.b64decode(icon_base64)
# Convert the binary data into an Image object
icon_image = Image.open(BytesIO(icon_data))
icon_image = ImageTk.PhotoImage(icon_image)
# Set the window icon
self.root.iconphoto(True, icon_image)
except Exception as e:
print(f"Error setting window icon: {e}")
def get_icon_data(self):
"""Retrieve the base64 encoded icon data."""
try:
# Get the correct path to the icon file, whether running in development or as a packaged app
if getattr(sys, 'frozen', False):
# Running in a bundled executable
icon_path = os.path.join(sys._MEIPASS, 'view.ico')
else:
# Running in a script (development mode)
icon_path = 'view.ico'
# Open the icon file and encode it to base64
with open(icon_path, 'rb') as icon_file:
icon_data = base64.b64encode(icon_file.read()).decode('utf-8')
return icon_data
except Exception as e:
print(f"Error loading icon: {e}")
return None
def setup_menu(self):
self.menu_bar = tk.Menu(self.root)
self.menu_bar.add_command(label="New", command=self.reset_images)
self.menu_bar.add_command(label="Add", command=self.add_images)
self.menu_bar.add_command(label="Slideshow", command=self.start_slideshow)
self.menu_bar.add_command(label="Save", command=self.save_collection)
self.menu_bar.add_command(label="Open", command=self.retrieve_collection)
self.root.config(menu=self.menu_bar)
def save_collection(self):
save_handler = Save(self.array_images)
save_handler.save_image_paths(self.root)
def retrieve_collection(self):
retrieve_handler = Retrieve()
new_images = retrieve_handler.retrieve_image_paths(self.root)
if new_images:
self.array_images.extend(new_images)
self.show_image(self.current_image_index)
def setup_layout(self):
"""Set up the main layout of the application."""
self.main_frame = tk.Frame(self.root)
self.main_frame.pack(fill=tk.BOTH, expand=True)
# Label to display the current image
self.image_area = tk.Label(
self.main_frame, text="No Image Loaded", bg="gray", fg="white"
)
self.image_area.pack(fill=tk.BOTH, expand=True)
# Bottom frame to hold navigation buttons
self.bottom_frame = tk.Frame(self.root, bg="lightgray", height=50)
self.bottom_frame.pack(side=tk.BOTTOM, fill=tk.X)
self.setup_bottom_buttons()
def setup_bottom_buttons(self):
"""Set up navigation buttons at the bottom of the window."""
# Clear previous buttons if any
for widget in self.bottom_frame.winfo_children():
widget.destroy()
# Navigation buttons: Backward, Forward, Shuffle
self.back_button = tk.Button(
self.bottom_frame, text="Backward", command=self.show_previous_image
)
self.forward_button = tk.Button(
self.bottom_frame, text="Forward", command=self.show_next_image
)
self.shuffle_button = tk.Button(
self.bottom_frame, text="Shuffle", command=self.shuffle_images
)
# Label for image number and total image count
self.image_count_label = tk.Label(
self.bottom_frame, text="Image 0 of 0", bg="lightgray", fg="black"
)
self.image_count_label.pack(side=tk.LEFT, padx=10)
# Pack the buttons into the bottom frame
self.back_button.pack(side=tk.LEFT, padx=5, pady=5)
self.forward_button.pack(side=tk.LEFT, padx=5, pady=5)
self.shuffle_button.pack(side=tk.LEFT, padx=5, pady=5)
def reset_images(self):
"""Clear the image list and reset the display."""
self.array_images = []
self.current_image_index = 0
self.image_area.config(image="", text="No Image Loaded")
messagebox.showinfo("Reset", "Image list cleared.")
def add_images(self):
"""Allow the user to add images to the list."""
file_paths = filedialog.askopenfilenames(
title="Select Images",
filetypes=[("Image Files", "*.jpg;*.jpeg;*.png;*.bmp;*.gif")],
)
if file_paths:
# Add selected images to the list
self.array_images.extend(file_paths)
self.current_image_index = 0
self.show_image(self.current_image_index)
def show_image(self, index):
"""Display an image at the given index."""
if not self.array_images:
self.image_area.config(image="", text="No Image Loaded")
return
try:
# Open the image and fit it within the available area
image_path = self.array_images[index]
image = Image.open(image_path)
# Get the size of the image area
area_width = self.image_area.winfo_width()
area_height = self.image_area.winfo_height() - self.bottom_frame.winfo_height()
# Resize the image to fit
image.thumbnail((area_width, area_height))
# Convert the image to a format tkinter can use
self.current_image = ImageTk.PhotoImage(image)
self.image_area.config(image=self.current_image, text="")
# Update the image count label
self.update_image_count_label()
except Exception as e:
# Show an error if the image fails to load
messagebox.showerror("Error", f"Failed to load image: {e}")
def show_previous_image(self):
"""Display the previous image in the list."""
if self.array_images:
self.current_image_index = (self.current_image_index - 1) % len(self.array_images)
self.show_image(self.current_image_index)
def show_next_image(self):
"""Display the next image in the list."""
if self.array_images:
self.current_image_index = (self.current_image_index + 1) % len(self.array_images)
self.show_image(self.current_image_index)
def shuffle_images(self):
"""Shuffle the images in the list."""
random.shuffle(self.array_images)
self.current_image_index = 0
self.show_image(self.current_image_index)
def update_image_count_label(self):
"""Update the label showing the current image number and total count."""
total_images = len(self.array_images)
current_image = self.current_image_index + 1 # User-friendly, starting at 1
self.image_count_label.config(text=f"Image {current_image} of {total_images}")
def start_slideshow(self):
"""Start the slideshow of images."""
if self.array_images:
Slideshow(self.root, self.array_images)
if __name__ == "__main__":
root = tk.Tk()
app = ImageViewerApp(root)
root.mainloop()