Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
New file added
  • Loading branch information
larymak authored Dec 7, 2020
commit 537ab9e92c71cac367de39f9bff8055aebdb9563
Binary file added photo editor/images.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added photo editor/lary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions photo editor/photo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from PIL import Image
me = Image.open('lary.png')
back = Image.open('images.jpg')
back.paste(me, (0,0), me)
back.show()















#me = Image.open('lary.png')
#bg = Image.open('images.jpg')
#bg.paste(me,(0,0),me)
#bg.show()