美文网首页
Python 44 Programming Tutorial

Python 44 Programming Tutorial

作者: 豆表示低调 | 来源:发表于2016-08-30 00:18 被阅读0次
from PIL import Image

sister = Image.open("sister.jpg")
girl = Image.open("girl.png")
area = (100, 100, 300, 300)

sister.paste(girl, area)  # make sure the area is the exact size of the paste data

sister.show()

相关文章

网友评论

      本文标题:Python 44 Programming Tutorial

      本文链接:https://www.haomeiwen.com/subject/txzxettx.html