Python Projects (11 Part Series)
1 Make an Instagram Spam Bot
2 Beginner Python Projects part 1
… 7 more parts…
3 Beginner Python Project Part 2
4 Beginner Python Project : Part 3
5 How To Make A Spam Bot with 5 lines of Code python
6 How To Generate Strong Passwords Using Python
7 Beginner Python Project (4) – YouTube Video Downloader
8 Make an Instagram Bot Using Python
9 Beginner Python Project (9) – Insta Spam Bot
10 Create a Digital Clock Using Python – Beginner Python Project(11)
11 QR Code Generator using Python
In this second post on my preferred python beginner projects I continue by building a photo editor app using python.
To get started we will need first have a code editor :
either * pycharm * VScode or * Sublime
- Next step create a file and give a .py extension
- Now you will have to install pillow: pip install pillow
- Next you will need two images, the one to use for back ground and the other to combine with The image should be transparent, you can remove the back ground of the image Here
- After doing the basics you can now write the code below and run it
from PIL import Image
me = Image.open('image name')
back = Image.open('background image name')
back.paste(me, (0,0), me)
back.show()
Enter fullscreen mode Exit fullscreen mode
Links to code and video
Youtube: Photo Editor Using Python
Github: larymak
Twitter: larymak1
Python Projects (11 Part Series)
1 Make an Instagram Spam Bot
2 Beginner Python Projects part 1
… 7 more parts…
3 Beginner Python Project Part 2
4 Beginner Python Project : Part 3
5 How To Make A Spam Bot with 5 lines of Code python
6 How To Generate Strong Passwords Using Python
7 Beginner Python Project (4) – YouTube Video Downloader
8 Make an Instagram Bot Using Python
9 Beginner Python Project (9) – Insta Spam Bot
10 Create a Digital Clock Using Python – Beginner Python Project(11)
11 QR Code Generator using Python
暂无评论内容