python使用PIL实现多张图片垂直合并


Posted in Python onJanuary 15, 2019

本文实例为大家分享了python实现多张图片垂直合并的具体代码,供大家参考,具体内容如下

# coding: utf-8 
# image_merge.py 
# 图片垂直合并 
# http://www.redicecn.com 
# redice@163.com 
 
import os 
import Image 
 
def image_resize(img, size=(1500, 1100)): 
  """调整图片大小 
  """ 
  try: 
    if img.mode not in ('L', 'RGB'): 
      img = img.convert('RGB') 
    img = img.resize(size) 
  except Exception, e: 
    pass 
  return img 
 
def image_merge(images, output_dir='output', output_name='merge.jpg', \ 
        restriction_max_width=None, restriction_max_height=None): 
  """垂直合并多张图片 
  images - 要合并的图片路径列表 
  ouput_dir - 输出路径 
  output_name - 输出文件名 
  restriction_max_width - 限制合并后的图片最大宽度,如果超过将等比缩小 
  restriction_max_height - 限制合并后的图片最大高度,如果超过将等比缩小 
  """ 
  max_width = 0 
  total_height = 0 
  # 计算合成后图片的宽度(以最宽的为准)和高度 
  for img_path in images: 
    if os.path.exists(img_path): 
      img = Image.open(img_path) 
      width, height = img.size 
      if width > max_width: 
        max_width = width 
      total_height += height 
 
  # 产生一张空白图 
  new_img = Image.new('RGB', (max_width, total_height), 255) 
  # 合并 
  x = y = 0 
  for img_path in images: 
    if os.path.exists(img_path): 
      img = Image.open(img_path) 
      width, height = img.size 
      new_img.paste(img, (x, y)) 
      y += height 
 
  if restriction_max_width and max_width >= restriction_max_width: 
    # 如果宽带超过限制 
    # 等比例缩小 
    ratio = restriction_max_height / float(max_width) 
    max_width = restriction_max_width 
    total_height = int(total_height * ratio) 
    new_img = image_resize(new_img, size=(max_width, total_height)) 
 
  if restriction_max_height and total_height >= restriction_max_height: 
    # 如果高度超过限制 
    # 等比例缩小 
    ratio = restriction_max_height / float(total_height) 
    max_width = int(max_width * ratio) 
    total_height = restriction_max_height 
    new_img = image_resize(new_img, size=(max_width, total_height)) 
   
  if not os.path.exists(output_dir): 
    os.makedirs(output_dir) 
  save_path = '%s/%s' % (output_dir, output_name) 
  new_img.save(save_path) 
  return save_path 
   
if __name__ == '__main__': 
  image_merge(images=['900-000-000-0501a_b.jpg', '900-000-000-0501b_b.JPG', '1216005237382a_b.jpg'])

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

Python 相关文章推荐
python提示No module named images的解决方法
Sep 29 Python
使用Python编写Linux系统守护进程实例
Feb 03 Python
win7上python2.7连接mysql数据库的方法
Jan 14 Python
基于Python3 逗号代码 和 字符图网格(详谈)
Jun 22 Python
python3.x 将byte转成字符串的方法
Jul 17 Python
Python2和Python3的共存和切换使用
Apr 12 Python
Python列表原理与用法详解【创建、元素增加、删除、访问、计数、切片、遍历等】
Oct 30 Python
python中的数组赋值与拷贝的区别详解
Nov 26 Python
使用python批量转换文件编码为UTF-8的实现
Apr 03 Python
sklearn的predict_proba使用说明
Jun 28 Python
jupyter notebook快速入门及使用详解
Nov 13 Python
用python爬虫批量下载pdf的实现
Dec 01 Python
python实现多张图片拼接成大图
Jan 15 #Python
解决新版Pycharm中Matplotlib图像不在弹出独立的显示窗口问题
Jan 15 #Python
python实现创建新列表和新字典,并使元素及键值对全部变成小写
Jan 15 #Python
Python数据可视化之画图
Jan 15 #Python
python实现在遍历列表时,直接对dict元素增加字段的方法
Jan 15 #Python
Python txt文件加入字典并查询的方法
Jan 15 #Python
Python XML转Json之XML2Dict的使用方法
Jan 15 #Python
You might like
用PHP连接Oracle for NT 远程数据库
2006/10/09 PHP
php实现的Captcha验证码类实例
2014/09/22 PHP
php创建多级目录的方法
2015/03/24 PHP
PHP+MySQL之Insert Into数据插入用法分析
2015/09/27 PHP
Symfony模板的快捷变量用法实例
2016/03/17 PHP
prototype Element学习笔记(篇二)
2008/10/26 Javascript
JS函数实现动态添加CSS样式表文件
2012/12/15 Javascript
jQuery获取Radio,CheckBox选择的Value值(示例代码)
2013/12/12 Javascript
JS使用getComputedStyle()方法获取CSS属性值
2014/04/23 Javascript
JavaScript实现SHA-1加密算法的方法
2015/03/11 Javascript
jQuery实现拖拽效果插件的方法
2015/03/23 Javascript
jQuery结合ajax实现动态加载文本内容
2015/05/19 Javascript
jQuery超简单选项卡完整实例
2015/09/26 Javascript
AngularJS中$interval的用法详解
2016/02/02 Javascript
JavaScript事件学习小结(三)js事件对象
2016/06/09 Javascript
vue 登录滑动验证实现代码
2018/08/24 Javascript
layui实现文件或图片上传记录
2018/08/28 Javascript
vue.js实现只能输入数字的输入框
2019/10/19 Javascript
antd日期选择器禁止选择当天之前的时间操作
2020/10/29 Javascript
[40:03]RNG vs VG 2019国际邀请赛小组赛 BO2 第二场 8.15
2019/08/17 DOTA
30秒轻松实现TensorFlow物体检测
2018/03/14 Python
解决yum对python依赖版本问题
2019/07/05 Python
Python 实现键盘鼠标按键模拟
2020/11/18 Python
python-图片流传输的思路及示例(url转换二维码)
2020/12/21 Python
Mankind西班牙男士护肤品网站:购买皮肤护理、护发和剃须
2017/04/27 全球购物
Lampenwelt德国:欧洲领先的灯具和照明在线商店
2018/08/05 全球购物
雅诗兰黛澳大利亚官网:Estée Lauder澳大利亚
2019/05/31 全球购物
ECCO俄罗斯官网:北欧丹麦鞋履及皮具品牌
2020/06/26 全球购物
Love, Bonito国际官网:新加坡女装品牌
2021/03/13 全球购物
怎样在程序里获得一个空指针
2015/01/24 面试题
研究生求职推荐信范文
2013/11/30 职场文书
求职信模板
2014/05/23 职场文书
八荣八耻演讲稿
2014/09/15 职场文书
顶岗实习协议书
2015/01/29 职场文书
Nginx Rewrite使用场景及配置方法解析
2021/04/01 Servers
Java中多线程下载图片并压缩能提高效率吗
2021/07/01 Java/Android