如何在Python中使用PIL将图像合成到另一个图像?

如何在Python中使用PIL将图像合成到另一个图像?,第1张

如何在Python中使用PIL将图像合成到另一个图像?

这可以通过Image实例

paste
方法来完成:

from PIL import Imageimg = Image.open('/path/to/file', 'r')img_w, img_h = img.sizebackground = Image.new('RGBA', (1440, 900), (255, 255, 255, 255))bg_w, bg_h = background.sizeoffset = ((bg_w - img_w) // 2, (bg_h - img_h) // 2)background.paste(img, offset)background.save('out.png')

可以在Nadia
Alramli的PIL教程中了解
此方法以及其他许多PIL技巧



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5654221.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存