Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. '''
  2. bingo = Image.new("RGB",(740,740), color=(10,10,10))
  3.  
  4. size = 128,128
  5. arya = Image.open("arya_edit.jpg") #arya 1
  6. arya = arya.thumbnail(size)
  7.  
  8. box = (10,10,138,138)
  9. #tried box = tuple(box)
  10. bingo.paste(arya, box)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement