python实现将文件夹内的每张图片批量分割成多张


Posted in Python onJuly 22, 2019

一、说在前面

       需求:有一张长为960,宽为96的图片,需要将其分割成10张96*96的图片并存放在另外一个文件夹下,通过手工分割耗时且不规范,选择python写一个简单的程序完成。

二、源码

# -*- coding: utf-8 -*-
"""
Created on Thu Aug 23 18:19:09 2018
@author: Administrator
"""
 
import os
from PIL import Image
 
# 切割图片
def splitimage(src, rownum, colnum, dstpath):
 img = Image.open(src)
 w, h = img.size
 if rownum <= h and colnum <= w:
 print('Original image info: %sx%s, %s, %s' % (w, h, img.format, img.mode))
 print('图片切割')
 
 s = os.path.split(src)
 if dstpath == '':
  dstpath = s[0]
 fn = s[1].split('.')
 basename = fn[0]
 ext = fn[-1]
 
 num = 0
 rowheight = h // rownum
 colwidth = w // colnum
 for r in range(rownum):
  for c in range(colnum):
  box = (c * colwidth, r * rowheight, (c + 1) * colwidth, (r + 1) * rowheight)
  img.crop(box).save(os.path.join(dstpath, basename + '_' + str(num) + '.' + ext), ext)
  num = num + 1
 
 print('共生成 %s 张小图片。' % num)
 else:
 print('error')
 
# 创建文件夹
def mkdir(path):
 # 去除首位空格
 path = path.strip()
 # 去除尾部 \ 符号
 path = path.rstrip("\\")
 
 # 判断路径是否存在
 # 存在 True
 # 不存在 False
 isExists = os.path.exists(path)
 
 # 判断结果
 if not isExists:
 os.makedirs(path)
 print (path+' 创建成功')
 return True
 else:
 print (path + ' 目录已存在')
 return False
 
 
folder = r'C:/Users/Administrator/Desktop/testresults' # 存放图片的文件夹
path = os.listdir(folder)
# print(path)
 
for each_bmp in path: # 批量操作
 first_name, second_name = os.path.splitext(each_bmp)
 each_bmp = os.path.join(folder, each_bmp)
 src = each_bmp
 print(src)
 print(first_name)
 # 定义要创建的目录
 mkpath = "C:/Users/Administrator/Desktop/results/"+ first_name
 # 调用函数
 mkdir(mkpath)
 if os.path.isfile(src):
  dstpath = mkpath
  if (dstpath == '') or os.path.exists(dstpath):
  row = int(1) # 切割行数
  col = int(10) # 切割列数
  if row > 0 and col > 0:
   splitimage(src, row, col, dstpath)
  else:
   print('无效的')
  else:
  print('图片保存目录 %s 不存在!' % dstpath)
 else:
  print('图片文件 %s 不存在!' % src)

三、写在后面

这里定义了切割行数和列数:

python实现将文件夹内的每张图片批量分割成多张

如果需要将图片更改尺寸,可以简单的使用PIL库中的resize()函数,代码如下:

from PIL import Image
 
for i in range(1,100):
 img = Image.open("C:/Users/Administrator/Desktop/test_results/"+str(i)+".png")
 img = img.convert("L")
 img = img.resize((960,96))
 
 img.save("C:/Users/Administrator/Desktop/test_results/"+str(i)+".png", "PNG")

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中使用OpenCV进行人脸检测的例子
Apr 18 Python
python统计一个文本中重复行数的方法
Nov 19 Python
分析并输出Python代码依赖的库的实现代码
Aug 09 Python
详解Python函数作用域的LEGB顺序
May 14 Python
Python三种遍历文件目录的方法实例代码
Jan 19 Python
安装python3的时候就是输入python3死活没有反应的解决方法
Jan 24 Python
浅谈python中np.array的shape( ,)与( ,1)的区别
Jun 04 Python
详解Python函数式编程—高阶函数
Mar 29 Python
python装饰器相当于函数的调用方式
Dec 27 Python
python mysql 字段与关键字冲突的解决方式
Mar 02 Python
django ListView的使用 ListView中获取url中的参数值方式
Mar 27 Python
Python爬虫scrapy框架Cookie池(微博Cookie池)的使用
Jan 13 Python
使用APScheduler3.0.1 实现定时任务的方法
Jul 22 #Python
Python定时任务APScheduler的实例实例详解
Jul 22 #Python
基于多进程中APScheduler重复运行的解决方法
Jul 22 #Python
django云端留言板实例详解
Jul 22 #Python
python实现图片中文字分割效果
Jul 22 #Python
django用户登录验证的完整示例代码
Jul 21 #Python
Python Threading 线程/互斥锁/死锁/GIL锁
Jul 21 #Python
You might like
PHP 增加了对 .ZIP 文件的读取功能
2006/10/09 PHP
新浪微博OAuth认证和储存的主要过程详解
2015/03/27 PHP
PHP使用preg_split()分割特殊字符(元字符等)的方法分析
2017/02/04 PHP
Laravel 5+ .env环境配置文件详解
2020/04/06 PHP
用js实现手把手教你月入万刀(转贴)
2007/11/07 Javascript
js或css实现滚动广告的几种方案
2010/01/28 Javascript
16个最流行的JavaScript框架[推荐]
2011/05/29 Javascript
contains和compareDocumentPosition 方法来确定是否HTML节点间的关系
2011/09/13 Javascript
jquery中dom操作和事件的实例学习 下拉框应用
2011/12/01 Javascript
深入领悟JavaScript中的面向对象
2013/11/18 Javascript
javascript四舍五入函数代码分享(保留后几位)
2013/12/10 Javascript
javascript的push使用指南
2014/12/05 Javascript
angularjs指令中的compile与link函数详解
2014/12/06 Javascript
js实现缓冲运动效果的方法
2015/04/10 Javascript
JS实现可展开折叠层的鼠标拖曳效果
2015/10/09 Javascript
localStorage实现便签小程序
2016/11/28 Javascript
jquery Banner轮播选项卡
2016/12/26 Javascript
VUE饿了么树形控件添加增删改功能的示例代码
2017/10/17 Javascript
使用D3.js创建物流地图的示例代码
2018/01/27 Javascript
jQuery 实现批量提交表格多行数据的方法
2018/08/09 jQuery
微信小程序实现购物页面左右联动
2019/02/15 Javascript
layuiAdmin循环遍历展示商品图片列表的方法
2019/09/16 Javascript
解决$store.getters调用不执行的问题
2019/11/08 Javascript
JavaScript运动原理基础知识详解
2020/04/02 Javascript
[01:14:55]EG vs Spirit Supermajor 败者组 BO3 第三场 6.4
2018/06/05 DOTA
[42:06]2019国际邀请赛全明星赛 8.23
2019/09/05 DOTA
python使用knn实现特征向量分类
2018/12/26 Python
python查看文件大小和文件夹内容的方法
2019/07/08 Python
python enumerate内置函数用法总结
2020/01/07 Python
Python实现验证码识别
2020/06/15 Python
FC-Moto英国:欧洲最大的摩托车服装和头盔商店之一
2019/08/25 全球购物
农业大学毕业生的个人自我评价
2013/10/11 职场文书
销售区域经理岗位职责
2015/04/10 职场文书
身份证丢失证明
2015/06/19 职场文书
文案策划岗位个人自我评价(范文)
2019/08/08 职场文书
python数据可视化使用pyfinance分析证券收益示例详解
2021/11/20 Python