from PIL import Image, ImageFilter, ImageDraw
import random
image_big = Image.open("./4.jpg")
(x,y) = image_big.size
max_width = 100
max_height = 100
Generate square images
for j in range(x):
for k in range(y):
Prcess part of the image
square_image = image_big.crop((j,k,j+max_width,k+max_height))
Resize
resized = square_image.resize((50,50))
Blur
blurred = resized.filter(ImageFilter.GaussianBlur(5))
Apply filter
mask = Image.new('L', (50,50), 0)
drawingContext = ImageDraw.Draw(mask)
drawingContext.ellipse((0,0,50,50), fill=255)
blurred.putalpha(mask)
blurred.save("square_images/"+str(j)+"_"+str(k)+".png")
4、小平米卧室装修效果图 简约
[图片描述:一套面积较小的卧室,装修风格简约。墙壁以白色为主色调,营造出明亮宽敞的感觉。卧室左侧有一张双人床,床头柜和床尾凳均采用原木色设计,为卧室增添了温馨感。床对面是一面穿衣镜,既方便使用,又可以扩大视觉空间。卧室右上角设有书桌和书架,为主人提供了一个安静的工作或学习空间。窗户旁放置着一张舒适的单人沙发,可以用来休息或阅读。整个卧室布局紧凑合理,色调以白色和原木色为主,营造出简约温馨的氛围。]