Added a border around the image

This commit is contained in:
(Tim) Efthimis Kritikos 2025-05-29 00:48:20 +01:00
parent e9c8131e9d
commit 082f4f48ec

View File

@ -79,7 +79,7 @@ def main():
img = Image.open(image_path)
img.thumbnail((400, 400)) # Resize for display
photo = ImageTk.PhotoImage(img)
img_label = tk.Label(root, image=photo, bg=background_color)
img_label = tk.Label(root, image=photo, bg=background_color, borderwidth=10)
#Start/end timestamp fields
timestamp=Frame(root)