this is the original back image this is the original front image 这是我的代码:
from PIL import Image
front=Image.open('/users/apple/Desktop/TMP.jpeg')
back=Image.open('/Users/apple/Desktop/原始图片/084.jpeg')
front=front.rotate(100,expand=True)
back.paste(front,(100,100))
back
this is what i get。 我想要一个没有裁剪侧面的干净的糊状物。 可以有人帮助我,谢谢。