图片自动切园
import os
from PIL import Image
#圆形头像
def circle(img_path,times):
path_name = os.path.dirname(img_path)
cir_file_name = 'cir_img.png'
cir_path = path_name + '/' + cir_file_name
ima = Image.open(img_path).convert("RGBA")
size = ima.size
print(size)
# 因为是要圆形,所以需要正方形的图片
r2 = min(size[0], size[1])
if size[0] != size[1]:
ima = ima.resize((r2, r2), Image.ANTIALIAS)
# 最后生成圆的半径
r3 = int(r2/2)
imb = Image.new('RGBA', (r3*2, r3*2),(255,255,255,0))
pima = ima.load() # 像素的访问对象
pimb = imb.load()
r = float(r2/2) #圆心横坐标
for i in range(r2):
for j in range(r2):
lx = abs(i-r) #到圆心距离的横坐标
ly = abs(j-r)#到圆心距离的纵坐标
l = (pow(lx,2) + pow(ly,2))** 0.5 # 三角函数 半径
if l < r3:
pimb[i-(r-r3),j-(r-r3)] = pima[i,j]
cir_file_name = 'cir_img-'+times+'-'+str(r3*2)+'.png' #修改为你想要的命名规则
cir_path = path_name + '/' + cir_file_name
imb.save(cir_path)
return cir_path
for root,dirs,files in os.walk(r"/root/xigua/zjl/pic"): #修改为图片路径
for file in files:
#获取文件所属目录
print(root)
#获取文件路径
print(os.path.join(root,file))
circle(os.path.join(root,file),file)
使用
这是一个自动将图片切成圆形的工具,所切圆为图片中最大内切圆。
1
修改circle.py中的图片路径
for root,dirs,files in os.walk(r"/root/xigua/zjl/pic"): #修改为图片路径
2
修改circle.py中的命名规则
cir_file_name = 'cir_img-'+times+'-'+str(r3*2)+'.png' #修改为你想要的命名规则
3