Python图像处理之gif动态图的解析与合成操作详解


Posted in Python onDecember 30, 2018

本文实例讲述了Python图像处理之gif动态图的解析与合成操作。分享给大家供大家参考,具体如下:

gif动态图是在现在已经司空见惯,朋友圈里也经常是一言不合就斗图。这里,就介绍下如何使用python来解析和生成gif图像。

一、gif动态图的合成

如下图,是一个gif动态图。

Python图像处理之gif动态图的解析与合成操作详解

gif动态图的解析可以使用PIL图像模块即可,具体代码如下:

#-*- coding: UTF-8 -*-
import os
from PIL import Image
def analyseImage(path):
  '''
  Pre-process pass over the image to determine the mode (full or additive).
  Necessary as assessing single frames isn't reliable. Need to know the mode
  before processing all frames.
  '''
  im = Image.open(path)
  results = {
    'size': im.size,
    'mode': 'full',
  }
  try:
    while True:
      if im.tile:
        tile = im.tile[0]
        update_region = tile[1]
        update_region_dimensions = update_region[2:]
        if update_region_dimensions != im.size:
          results['mode'] = 'partial'
          break
      im.seek(im.tell() + 1)
  except EOFError:
    pass
  return results
def processImage(path):
  '''
  Iterate the GIF, extracting each frame.
  '''
  mode = analyseImage(path)['mode']
  im = Image.open(path)
  i = 0
  p = im.getpalette()
  last_frame = im.convert('RGBA')
  try:
    while True:
      print "saving %s (%s) frame %d, %s %s" % (path, mode, i, im.size, im.tile)
      '''
      If the GIF uses local colour tables, each frame will have its own palette.
      If not, we need to apply the global palette to the new frame.
      '''
      if not im.getpalette():
        im.putpalette(p)
      new_frame = Image.new('RGBA', im.size)
      '''
      Is this file a "partial"-mode GIF where frames update a region of a different size to the entire image?
      If so, we need to construct the new frame by pasting it on top of the preceding frames.
      '''
      if mode == 'partial':
        new_frame.paste(last_frame)
      new_frame.paste(im, (0,0), im.convert('RGBA'))
      new_frame.save('%s-%d.png' % (''.join(os.path.basename(path).split('.')[:-1]), i), 'PNG')
      i += 1
      last_frame = new_frame
      im.seek(im.tell() + 1)
  except EOFError:
    pass
def main():
  processImage('test_gif.gif')
if __name__ == "__main__":
  main()

解析结果如下,由此可见改动态图实际上是由14张相同分辨率的静态图组合而成

Python图像处理之gif动态图的解析与合成操作详解

二、gif动态图的合成

gif图像的合成,使用imageio库(https://pypi.python.org/pypi/imageio)

代码如下:

#-*- coding: UTF-8 -*-
import imageio
def create_gif(image_list, gif_name):
  frames = []
  for image_name in image_list:
    frames.append(imageio.imread(image_name))
  # Save them as frames into a gif
  imageio.mimsave(gif_name, frames, 'GIF', duration = 0.1)
  return
def main():
  image_list = ['test_gif-0.png', 'test_gif-2.png', 'test_gif-4.png',
         'test_gif-6.png', 'test_gif-8.png', 'test_gif-10.png']
  gif_name = 'created_gif.gif'
  create_gif(image_list, gif_name)
if __name__ == "__main__":
  main()

这里,使用第一步解析出来的图像中的8幅图,间副的间隔时间为0.1s,合成新的gif动态图如下:

Python图像处理之gif动态图的解析与合成操作详解

更多关于Python相关内容可查看本站专题:《Python数学运算技巧总结》、《Python图片操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
gearman的安装启动及python API使用实例
Jul 08 Python
Python保存MongoDB上的文件到本地的方法
Mar 16 Python
浅谈python中set使用
Jun 30 Python
深入理解Django的自定义过滤器
Oct 17 Python
Python enumerate索引迭代代码解析
Jan 19 Python
python学习入门细节知识点
Mar 29 Python
Python列表生成式与生成器操作示例
Aug 01 Python
python简单贪吃蛇开发
Jan 28 Python
Python read函数按字节(字符)读取文件的实现
Jul 03 Python
Python3开发实例之非关系型图数据库Neo4j安装方法及Python3连接操作Neo4j方法实例
Mar 18 Python
python 轮询执行某函数的2种方式
May 03 Python
matplotlib基础绘图命令之imshow的使用
Aug 13 Python
python爬虫获取小区经纬度以及结构化地址
Dec 30 #Python
python实现播放音频和录音功能示例代码
Dec 30 #Python
利用python实现简易版的贪吃蛇游戏(面向python小白)
Dec 30 #Python
python中partial()基础用法说明
Dec 30 #Python
python读取各种文件数据方法解析
Dec 29 #Python
python 读取鼠标点击坐标的实例
Dec 29 #Python
对python for 文件指定行读写操作详解
Dec 29 #Python
You might like
php打开文件fopen函数的使用说明
2013/07/05 PHP
php中heredoc与nowdoc介绍
2014/12/25 PHP
php简单分页类实现方法
2015/02/26 PHP
php使用post数组的键值创建同名变量并赋值的方法
2015/04/03 PHP
PHP抓取远程图片(含不带后缀的)教程详解
2016/10/21 PHP
对字符串进行HTML编码和解码的JavaScript函数
2010/02/01 Javascript
js 操作select和option常用代码整理
2012/12/13 Javascript
两种方法实现文本框输入内容提示消失
2013/03/17 Javascript
ie与ff下的event事件使用介绍
2013/11/25 Javascript
利用了jquery的ajax实现二级联互动菜单
2013/12/02 Javascript
javascript处理表单示例(javascript提交表单)
2014/04/28 Javascript
Javascript中对象继承的实现小例
2014/05/12 Javascript
在JavaScript中构建ArrayList示例代码
2014/09/17 Javascript
js插件设置innerHTML时在IE8下提示“未知运行时错误”解决方法
2015/04/25 Javascript
JavaScript中的some()方法使用详解
2015/06/09 Javascript
比例尺、缩略图、平移缩放之百度地图添加控件方法
2015/08/03 Javascript
jQuery实现二级下拉菜单效果
2016/01/05 Javascript
JS实现刷新父页面不弹出提示框的方法
2016/06/22 Javascript
微信小程序引用公共js里的方法的实例详解
2017/08/17 Javascript
Vue.js实现实例搜索应用功能详细代码
2017/08/24 Javascript
Vue传参一箩筐(页面、组件)
2019/04/04 Javascript
使用taro开发微信小程序遇到的坑总结
2019/04/08 Javascript
jquery实现弹窗(系统提示框)效果
2019/12/10 jQuery
[02:19]2018年度DOTA2最佳核心位选手-完美盛典
2018/12/17 DOTA
Python中用format函数格式化字符串的用法
2015/04/08 Python
python利用paramiko连接远程服务器执行命令的方法
2017/10/16 Python
Python实现微信自动好友验证,自动回复,发送群聊链接方法
2019/02/21 Python
Python中BeautifuSoup库的用法使用详解
2019/11/15 Python
python面向对象之类属性和类方法案例分析
2019/12/30 Python
中学生团员自我评价分享
2013/12/07 职场文书
医学生求职自荐书
2014/06/12 职场文书
2014年师德师风工作总结
2014/11/25 职场文书
三年级学生评语大全
2014/12/26 职场文书
会计试用期自我评价
2015/03/10 职场文书
一篇合格的广告文案,其主要目的是什么?
2019/07/12 职场文书
html form表单基础入门案例讲解
2021/07/15 HTML / CSS