Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 1.4 KB

File metadata and controls

35 lines (19 loc) · 1.4 KB

Projects-Chapter-17-Manipulating-Images--Automate-the-boring-stuff

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:

  1. Extending and Fixing the Chapter Project Programs:

https://github.com/bansalshivam/Projects-Chapter-17-Manipulating-Images--Automate-the-boring-stuff/blob/master/resizeAndAddLogo_2.py

  1. Identifying Photo Folders on the Hard Drive:

https://github.com/bansalshivam/Projects-Chapter-17-Manipulating-Images--Automate-the-boring-stuff/blob/master/resizeAndAddLogo_2.py

  1. Custom Seating Cards:

https://github.com/bansalshivam/Projects-Chapter-17-Manipulating-Images--Automate-the-boring-stuff/blob/master/CeatingCard.png


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