【python】PIL(持续更新)

目录

  • PIL转换为numay
  • numay转换为PIL
  • 将一张图片粘贴在另一张图片上(img.paste)

PIL转换为numay

from PIL import Image

img=Image.open("path")
img=np.array(img)

numay转换为PIL

from PIL import Image
import numpy as np

# img.type:numpy
img=Image.fromarray(img)
img.show()
img.save("path")

将一张图片粘贴在另一张图片上(img.paste)

img.paste(im, box=None, mask=None)

你可能感兴趣的:(python,python)