Python图像处理之gif动态图的解析与合成操作详解
作者:PHILOS_THU 时间:2022-09-27 18:19:51
本文实例讲述了Python图像处理之gif动态图的解析与合成操作。分享给大家供大家参考,具体如下:
gif动态图是在现在已经司空见惯,朋友圈里也经常是一言不合就斗图。这里,就介绍下如何使用python来解析和生成gif图像。
一、gif动态图的合成
如下图,是一个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张相同分辨率的静态图组合而成
二、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程序设计有所帮助。
来源:https://blog.csdn.net/guduruyu/article/details/77540445
标签:Python,图像处理,gif
0
投稿
猜你喜欢
解决出现SoapFault (looks like we got no XML document)的问题
2023-11-19 04:21:01
PHP登录(ajax提交数据和后台校验)实例分享
2024-04-28 09:43:41
使用PyQt5设计GUI实现程序图形界面设计
2021-09-26 03:22:02
python通过http上传文件思路详解
2022-02-08 12:48:30
Python读取和存储yaml文件的方法
2023-03-26 10:23:44
动态程序防采集的新方法
2010-04-24 15:24:00
PHP排序二叉树基本功能实现方法示例
2023-07-10 04:45:53
String与string的区别(注意大小写)
2023-06-28 22:04:13
python 模拟银行转账功能过程详解
2021-07-16 02:49:15
python中的txt文件转换为XML
2021-12-05 10:45:48
MySQL按小时查询数据,没有的补0
2024-01-18 00:55:30
微软Silverlight技术魅力初体验
2008-11-05 11:16:00
Go语言Grpc Stream的实现
2023-08-07 06:19:23
详解Vuex管理登录状态
2024-04-26 17:38:02
傲游对开发人员的影响越来越大了
2009-10-14 13:16:00
使用python连接mysql数据库之pymysql模块的使用
2024-01-16 13:12:11
Python微信企业号开发之回调模式接收微信端客户端发送消息及被动返回消息示例
2023-09-20 13:29:27
MSSQL木马修复,中木马后的处理方法
2024-01-21 10:47:13
python3中的函数与参数及空值问题
2023-08-10 00:26:18
python将图片转base64,实现前端显示
2021-04-26 14:03:04