原理
1、用Python制作的九宫格图像生成器包装exe文件,用户可以在当地运行该程序,快速生成九宫格图像,无需部署安装Python的开发环境。
2、不断用PIL库画小区域,切下来存储成新的小图片。
实例
假设每个格子的宽度和高度分别为w、h,然后第row行(从0开始计数),第col列(从0开始计数)格子的左上角坐标和右下角坐标分别是(col * w, row * h),(col * w + w, r * h + h)。
#-*-coding:UTF-8-*- #把一张照片分成九张,九宫格 importtkinterastk fromPILimportImage importsys #先将inputimage填充成正方形 deffill_image(image): width,height=image.size #选择长、宽、中较大值作为新图片 new_image_length=widthifwidth>heightelseheight #生成新图片[白底] new_image=Image.new(image.mode,(new_image_length,new_image_length),color='white')#注意这个函数! #将之前的图片粘贴在新图片上,居中 ifwidth>height:#如果原图宽度大于高,则填充图片的垂直维度#(x,y)二元组是指粘贴上图相对于下图的起始位置,是坐标点。 new_image.paste(image,(0,int((new_image_length-height)/2))) else: new_image.paste(image,(int((new_image_length-width)/2),0)) returnnew_image #分割图片 defcut_image(image): width,height=image.size item_width=int(width/3)#因为朋友圈一行放三张图。 box_list=[] #(left,upper,right,lower) foriinrange(0,3): forjinrange(0,3): #print((i*item_width,j*item_width,(i+1)*item_width,(j+1)*item_width)) box=(j*item_width,i*item_width,(j+1)*item_width,(i+1)*item_width) box_list.append(box) image_list=[image.crop(box)forboxinbox_list] returnimage_list #保存图片 defsave_images(image_list): index=1 forimageinimage_list: image.save(str(index)+'.png','PNG') index+=1 #点击按钮,实现图片分割 defcTofClicked(): file_path=str(entryCd.get()#获取需要分割的图片路径 image=Image.open(file_path) #image.show() image=fill_image(image) image_list=cut_image(image) save_images(image_list) labelcTof.config(text="九宫格图片已生,请查看程序所在目录!") #窗体 top=tk.Tk() top.title('九宫格图片生成器#39;) labelcTof=tk.Label(top,text="请输入要转换的图片路径:",height=4,\ width=40,fg="blue") labelcTof.pack() entryCd=tk.Entry(top,text='0')#获取图片路径的文本框 entryCd.pack() label_tip=tk.Label(top,text="请检查图片路径输入是否正确!",height=2,\ width=40,fg="gray") label_tip.pack() btnCal=tk.Button(top,text="点击生成九宫格图片",fg="red",bg="yellow",command=cTofClicked)#点击回调函数 btnCal.pack() top.mainloop()#执行主循环
以上是python九宫格图片的原理,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。