使用python以循环方式裁剪图像

时间:2018-07-23 19:51:51

标签: python image-processing

我想创建一个以循环方式裁剪图像的脚本。

我有一个服务器,可以接收所有类型(大小相同)的图片,并且我希望服务器裁剪接收到的图像。

例如,打开此图像:

Before

对此:

After

我希望能够将其另存为PNG(具有透明背景)。

这怎么办?

1 个答案:

答案 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')

enter image description here