在Pillow包中提供了9种不同的图片模式,分别是1、L、P、RGBYCbCr、I、F,
模式 说明
l 二值图像,只有黑、白两种颜色
L 灰度图像
P 8位色彩图像
RGB 红、绿、蓝色彩空间,每一种颜色值在0~255内
RGBA 对图像增加透明通道
CMYK 四色标准颜色,一般用于打印品
YCbCr 色度和亮度分量标准,YCbCr是在计算机中应用最多的色彩标准
I 高清晰灰度标准,和L模式相比提供32位空间
F 灰度图像标准,保留转换后的浮点数
Pillow包提供了大量方便使用的图片处理工具,可以在官方文档中此API接口,地址为https://pillow.readthedocsio/en/stable/。
# -*- coding: UTF-8 -*-
# encoding: utf-8
#-*- coding: UTF-8 -*-
# 版权所有 2023 ©涂聚文有限公司
# 许可信息查看:
# 描述:
# Author : geovindu,Geovin Du 涂聚文.
# IDE : PyCharm 2023.1 python 311
# Datetime : 2023/7/5 11:08
# User : geovindu
# Product : UI
# Project : pythonTkinterDemo
# File : menu.py
# explain : 学习from PIL import Image,ImageSequence
import globdef makeGif(framefolder):"""生成GIF动画图片:param framefolder: 文件夹:return:"""images = glob.glob(f"{framefolder}/*.png")images.sort()frames = [Image.open(image) for image in images]frame_one = frames[0]print(frame_one)frame_one.save(framefolder+"/geovindu.gif", format="gif", append_images=frames,save_all=True, duration=50, loop=0)
调用:
pathfolder = 'imgseq'
makeGif(pathfolder)
img=Image.open(pathfolder+"\geovindu.gif")
img.save()
PEP8规范
www.python.org/dev/peps/
pip install autopep8
https://pillow.readthedocs.io/en/stable/
Comma-Separated Values CSV
更多文章:
python: create animated GIF - ®Geovin Du Dream Park™ - 博客园 (cnblogs.com)