当前位置: 首页 > 工具软件 > Python Paste > 使用案例 >

python3 image模块paste功能粘贴png图片底部有空白的解决办法

养俊驰
2023-12-01

 需要增加mask参数

def test():
    im_name = Image.open("model.png")
    img = 'logo_2.png' # 图片模板
    #img_cai_jie = get_image(img,150,150)
    img_cai_jie = Image.open("111111.png")
    box = (283,215)
    r,g,b,a = img_cai_jie.split()
    im_name.show()
    im_name.paste(img_cai_jie, box,mask=a)
    im_name.show()
    # im_name.save(y_name + '.png', 'PNG')

 类似资料: