Spotlightpicview -

# plugins/auto_enhance.py def process_image(image, metadata): # image is a PIL Image, metadata includes filename from PIL import ImageEnhance enhancer = ImageEnhance.Contrast(image) return enhancer.enhance(1.2) def on_load(): print("Auto-enhance plugin active")

UI flickers during slideshow. A: Reduce slideshow delay to 2+ seconds, or disable crossfade transition. 12. Extending SpotlightPicView (Plugins) You can add custom plugins by dropping a .py file into plugins/ : SpotlightPicView

MIT – free to use, modify, redistribute. # plugins/auto_enhance

Enjoy the spotlight on your photos.

Can’t open HEIC images. A: Install pyheif (Linux/macOS) or use the Windows HEIC extension + pillow-heif . # plugins/auto_enhance.py def process_image(image

[GitHub Issues link]