我想创建一个以循环方式裁剪图像的脚本。
我有一个服务器,可以接收所有类型(大小相同)的图片,并且我希望服务器裁剪接收到的图像。
例如,打开此图像:
对此:
我希望能够将其另存为PNG(具有透明背景)。
这怎么办?
答案 0 :(得分:2)
这里是一种方法:
#!/usr/local/bin/python3
import numpy as np
from PIL import Image, ImageDraw
# Open the input image as numpy array, convert to RGB
img=Image.open("dog.jpg").convert("RGB")
npImage=np.array(img)
h,w=img.size
# Create same size alpha layer with circle
alpha = Image.new('L', img.size,0)
draw = ImageDraw.Draw(alpha)
draw.pieslice([0,0,h,w],0,360,fill=255)
# Convert alpha Image to numpy array
npAlpha=np.array(alpha)
# Add alpha layer to RGB
npImage=np.dstack((npImage,npAlpha))
# Save with alpha
Image.fromarray(npImage).save('result.png')