This project is a Python-based GIF generator that creates an animated GIF by combining a sequence of image files. It was developed as a beginner project with guidance from Codédex tutorials to practice Python scripting and the use of external libraries.
- Combines multiple images into a single animated GIF
- Simple and beginner-friendly implementation
- Uses a third-party Python library for image processing
- Python
- imageio
- Install the required dependency:
pip install imageio - Run the program using:
python Gif.py - The generated GIF will be saved in the project directory
- Working with third-party Python libraries
- Handling and processing image files
- Structuring and documenting a small Python project