Skip to content

Commit 537ab9e

Browse files
authored
New file added
1 parent 404773e commit 537ab9e

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

photo editor/images.jpg

43.4 KB
Loading

photo editor/lary.png

1.2 MB
Loading

photo editor/photo.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from PIL import Image
2+
me = Image.open('lary.png')
3+
back = Image.open('images.jpg')
4+
back.paste(me, (0,0), me)
5+
back.show()
6+
7+
8+
9+
10+
11+
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
#me = Image.open('lary.png')
22+
#bg = Image.open('images.jpg')
23+
#bg.paste(me,(0,0),me)
24+
#bg.show()

0 commit comments

Comments
 (0)