This is a small Python project to create GIFs from images.
The goal of this project is to test and experiment with Python features, specifically:
- Reading images from a folder
- Creating GIFs from those images
- Interactive CLI menu to choose options:
- Create example GIF (default frames)
- Create GIF from a folder of your choice
- Advanced mode (choose folder, GIF name, frame duration, and loop)
This project is mainly for educational experimentation with imageio.v3 and image handling.
- Place all images you want in the GIF inside a folder (e.g.,
frames). - Run the main script:
python main.py
Follow the menu instructions:
Option 1: Create an example GIF using images from the frames folder.
Option 2: Create a GIF from a folder of your choice.
Option 3: Advanced mode (choose folder, GIF name, frame duration, and loop).
Dependencies
Python 3.11+
imageio library:
pip install imageio
Note
This is a test project to experiment with Python, image handling, and programmatically creating GIFs.