python PIL库 Image.new 和 paste

from PIL import Image
import matplotlib.pyplot as plt
img = Image.new("RGB",(100,100))
img.paste("red",(10,10,30,30))
plt.imshow(img)
plt.show()

python PIL库 Image.new 和 paste_第1张图片

你可能感兴趣的:(python每日探索,计算机视觉)