These projects are given in the book AUTOMATE THE BORING STUFF WITH PYTHON. You can buy the book from amazon or can look at https://automatetheboringstuff.com/ and can access it for free.
There are three projects given in chapter 17 Manipulating Images:
- Extending and Fixing the Chapter Project Programs:
- Identifying Photo Folders on the Hard Drive:
- Custom Seating Cards:
The codes to solve the projects have uploaded in this repository.
To run these projects you need Python3 & above. Also you need to install a third party module 'Pillow'. It is suggested to install it in virtual environment and linux users can create virtual environment by entering:
python3 -m venv env
After creating virtual environment, activate it by command:
source env/bin/activate
Now To install Pillow enter : pip install pillow