Python图像处理神器!Pillow库从入门到精通,这教程太全了
itomcoil 2025-08-30 23:59 3 浏览
Pillow是Python中一个强大的图像处理库,是PIL(Python Imaging Library)的分支和升级版本。本教程将介绍Pillow的基本用法和常见操作。
## 安装Pillow
```python
pip install pillow
```
## 基本图像操作
### 1. 打开和显示图像
```python
from PIL import Image
# 打开图像
img = Image.open('example.jpg')
# 显示图像
img.show()
# 获取图像信息
print(f"格式: {img.format}")
print(f"大小: {img.size}") # (宽度, 高度)
print(f"模式: {img.mode}") # RGB, L(灰度), CMYK等
```
### 2. 保存图像
```python
# 保存为不同格式
img.save('example.png') # 转换为PNG格式
img.save('example_quality.jpg', quality=95) # 指定JPEG质量
```
### 3. 图像转换
```python
# 转换为灰度图像
gray_img = img.convert('L')
gray_img.show()
# 转换图像模式
if img.mode != 'RGB':
rgb_img = img.convert('RGB')
```
### 4. 调整图像大小
```python
# 调整尺寸
resized_img = img.resize((300, 200))
resized_img.show()
# 保持宽高比的缩放
width, height = img.size
new_height = 300
new_width = int(width * new_height / height)
aspect_img = img.resize((new_width, new_height))
aspect_img.show()
```
### 5. 旋转和翻转图像
```python
# 旋转90度
rotated_img = img.rotate(90)
rotated_img.show()
# 镜像翻转
flipped_img = img.transpose(Image.FLIP_LEFT_RIGHT)
flipped_img.show()
```
## 图像处理
### 1. 裁剪图像
```python
# 定义裁剪区域 (left, upper, right, lower)
box = (100, 100, 400, 400)
cropped_img = img.crop(box)
cropped_img.show()
```
### 2. 粘贴图像
```python
# 打开另一张图像
logo = Image.open('logo.png')
# 粘贴到指定位置
img.paste(logo, (50, 50))
img.show()
```
### 3. 创建缩略图
```python
# 创建缩略图 (会修改原图像)
img.thumbnail((100, 100))
img.show()
```
### 4. 图像滤镜
```python
from PIL import ImageFilter
# 应用模糊滤镜
blurred_img = img.filter(ImageFilter.BLUR)
blurred_img.show()
# 边缘增强
edge_img = img.filter(ImageFilter.EDGE_ENHANCE)
edge_img.show()
# 更多滤镜
# ImageFilter.CONTOUR - 轮廓
# ImageFilter.DETAIL - 细节增强
# ImageFilter.EMBOSS - 浮雕
# ImageFilter.SHARPEN - 锐化
# ImageFilter.SMOOTH - 平滑
```
## 高级操作
### 1. 绘制图形和文字
```python
from PIL import ImageDraw, ImageFont
# 创建一个可绘制对象
draw = ImageDraw.Draw(img)
# 绘制矩形
draw.rectangle([(100, 100), (200, 200)], outline='red', width=2)
# 绘制文字
try:
font = ImageFont.truetype('arial.ttf', 40)
except:
font = ImageFont.load_default()
draw.text((50, 50), "Hello Pillow", fill='blue', font=font)
img.show()
```
### 2. 像素级操作
```python
# 获取像素值
pixel = img.getpixel((100, 100))
print(f"像素值: {pixel}")
# 设置像素值
img.putpixel((100, 100), (255, 0, 0)) # 设置为红色
# 处理所有像素
pixels = img.load()
for i in range(img.size[0]):
for j in range(img.size[1]):
r, g, b = pixels[i, j]
# 示例:转换为灰度
gray = int(0.299 * r + 0.587 * g + 0.114 * b)
pixels[i, j] = (gray, gray, gray)
img.show()
```
### 3. 图像合成
```python
from PIL import ImageChops
# 打开两张图像
img1 = Image.open('image1.jpg')
img2 = Image.open('image2.jpg')
# 确保大小相同
img2 = img2.resize(img1.size)
# 图像混合
blended_img = Image.blend(img1, img2, alpha=0.5) # alpha是混合比例
blended_img.show()
# 其他合成操作
# ImageChops.add() - 相加
# ImageChops.subtract() - 相减
# ImageChops.multiply() - 相乘
# ImageChops.screen() - 屏幕混合
# ImageChops.darker() - 取较暗像素
# ImageChops.lighter() - 取较亮像素
```
### 4. 批量处理图像
```python
import os
from PIL import Image
input_folder = 'input_images'
output_folder = 'output_images'
if not os.path.exists(output_folder):
os.makedirs(output_folder)
for filename in os.listdir(input_folder):
if filename.lower().endswith(('.png', '.jpg', '.jpeg')):
img_path = os.path.join(input_folder, filename)
img = Image.open(img_path)
# 处理图像 - 例如创建缩略图
img.thumbnail((200, 200))
# 保存处理后的图像
output_path = os.path.join(output_folder, f"thumb_{filename}")
img.save(output_path)
```
## 实际应用示例
### 1. 为图片添加水印
```python
def add_watermark(image_path, watermark_text, output_path):
# 打开原始图像
base_image = Image.open(image_path).convert("RGBA")
# 创建一个透明图层用于水印
txt = Image.new("RGBA", base_image.size, (255, 255, 255, 0))
# 获取绘图对象
d = ImageDraw.Draw(txt)
# 尝试加载字体
try:
font = ImageFont.truetype("arial.ttf", 40)
except:
font = ImageFont.load_default()
# 计算文本位置(右下角)
text_width, text_height = d.textsize(watermark_text, font)
x = base_image.width - text_width - 10
y = base_image.height - text_height - 10
# 绘制半透明文本
d.text((x, y), watermark_text, font=font, fill=(255, 255, 255, 128))
# 合并图像
watermarked = Image.alpha_composite(base_image, txt)
# 保存为RGB格式(JPEG不支持透明度)
watermarked.convert("RGB").save(output_path)
# 使用示例
add_watermark("photo.jpg", "My Watermark", "watermarked_photo.jpg")
```
### 2. 创建图片拼贴
```python
def create_collage(image_paths, output_path, collage_size=(1000, 1000), images_per_row=3):
# 计算每个小图的大小
img_width = collage_size[0] // images_per_row
img_height = img_width # 保持正方形
# 创建新图像
collage = Image.new('RGB', collage_size)
x, y = 0, 0
for i, img_path in enumerate(image_paths):
try:
img = Image.open(img_path)
# 调整大小并保持比例
img.thumbnail((img_width, img_height))
# 计算居中位置
paste_x = x + (img_width - img.width) // 2
paste_y = y + (img_height - img.height) // 2
# 粘贴图像
collage.paste(img, (paste_x, paste_y))
# 更新位置
x += img_width
if (i + 1) % images_per_row == 0:
x = 0
y += img_height
except Exception as e:
print(f"无法处理图像 {img_path}: {e}")
collage.save(output_path)
# 使用示例
image_files = ['image1.jpg', 'image2.jpg', 'image3.jpg', 'image4.jpg']
create_collage(image_files, 'collage.jpg')
```
### 3. 生成验证码图片
```python
import random
import string
from PIL import Image, ImageDraw, ImageFont, ImageFilter
def generate_captcha(width=200, height=80, char_length=6):
# 创建图像
image = Image.new('RGB', (width, height), (255, 255, 255))
draw = ImageDraw.Draw(image)
# 生成随机字符
chars = ''.join(random.choices(string.ascii_uppercase + string.digits, k=char_length))
# 使用随机字体大小和位置
font_size = random.randint(30, 40)
try:
font = ImageFont.truetype('arial.ttf', font_size)
except:
font = ImageFont.load_default()
# 绘制每个字符
x = 10
for char in chars:
# 随机颜色
color = (random.randint(0, 150), random.randint(0, 150), random.randint(0, 150))
# 随机y位置
y = random.randint(5, height - font_size - 5)
# 绘制字符
draw.text((x, y), char, fill=color, font=font)
# 随机旋转
# 这里需要创建一个新的临时图像来旋转字符
char_img = Image.new('RGBA', (font_size, font_size), (255, 255, 255, 0))
char_draw = ImageDraw.Draw(char_img)
char_draw.text((0, 0), char, fill=color, font=font)
rotated_char = char_img.rotate(random.randint(-30, 30), expand=1)
# 计算新位置
paste_x = x + (font_size - rotated_char.width) // 2
paste_y = y + (font_size - rotated_char.height) // 2
# 粘贴旋转后的字符
image.paste(rotated_char, (paste_x, paste_y), rotated_char)
x += font_size + random.randint(-5, 5)
# 添加干扰线
for _ in range(5):
x1 = random.randint(0, width)
y1 = random.randint(0, height)
x2 = random.randint(0, width)
y2 = random.randint(0, height)
draw.line([(x1, y1), (x2, y2)], fill=(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)), width=1)
# 添加噪点
for _ in range(width * height // 20):
draw.point((random.randint(0, width), random.randint(0, height)), fill=(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)))
# 应用模糊滤镜
image = image.filter(ImageFilter.BLUR)
return image, chars
# 使用示例
captcha, text = generate_captcha()
captcha.save('captcha.png')
print(f"验证码文本: {text}")
captcha.show()
```
## 总结
Pillow库提供了丰富的图像处理功能,从基本的图像打开、保存和转换,到高级的滤镜应用、像素级操作和图像合成。通过本教程中的示例,你可以快速掌握Pillow的核心功能,并将其应用到实际项目中,如图片处理工具、网站图像处理、验证码生成等场景。
相关推荐
- mysql中缓存开启和失效场景cache_mysql缓存机制有几种
-
--1.当前数据库是否支持缓存数据SHOWVARIABLESLIKE'have_query_cache';--2.当前数据库缓存数据库开关是否开启OFF/0未开启YES/...
- MySQL常见错误及解决方法_mysql错误大全
-
MySQL是最常用的关系型数据库之一,在使用过程中也会遇到很多报错,本文列举了一些常见的错误及解决方法。1.Can'tconnecttoMySQLserver原因:MySQL服务未启...
- 牛哇!MySQL中的日志“binlog”的三种格式这么好玩
-
MySQL中的日志比较重要的有binlog(归档日志)、redolog(重做日志)以及undolog,那么跟我们本文相关的主要是binlog,另外两个日志松哥将来有空了再和大家详细介绍。1...
- 让我们在音乐中藏点儿东西吧_让我们在音乐的世界里
-
1不仅仅是音轨前阵子,新的Doom游戏中的一段音轨被人发现里面有隐藏的五角星图片以及“666”的字样,这不禁让我有了想尝试一下的想法。其实很早之前就知道可以通过多种方式将图片转换成声音,但是自己从...
- 《Python实现PPT转图片:高效批处理的技术路径》
-
Python处理PPT转图片的核心方案集中于两类库:基于COM接口的win32com.client,适用于Windows环境,通过调用PowerPoint程序API实现幻灯片逐页导出,支持指定分辨率...
- 实测o3/o4-mini:3分钟解决欧拉问题,OpenAI最强模型名副其实
-
号称“OpenAI迄今为止最强模型”,o3/o4-mini真实能力究竟如何?就在发布后的几小时内,网友们的第一波实测已新鲜出炉。最强推理模型o3,即使遇上首位全职提示词工程师RileyGoodsid...
- 如何用Python快速切割图片?_python把图片切割成固定大小的子图
-
安装一个叫做PIL的Python图像处理库,它可以让我们读取、裁剪和保存图片。准备一张要分割的图片,并把它放在一个文件夹里。比如这里有一张很长的漫画图片,命名为2023-07-29_100430.pn...
- bmp转jpg脚本_bmp转化为jpg批量
-
我们在使用示波器时,经常会需要将波形通过U盘导出,一般这种导出的波形的都是bmp格式的,很多时候bmp格式的图片不方便使用,需要转换为jpg或png格式的。波形保存到U盘后,可以...
- python模块安装问题汇总及解决办法
-
问题:pipinstallplaysound出错解决办法:pipinstallplaysound==1.2.2问题:pipinstall某个模块失败解决办法:可以去用这个模块的whl文...
- Python处理图像_python怎么图像处理
-
入门知识颜色。如果你有使用颜料画画的经历,那么一定知道混合红、黄、蓝三种颜料可以得到其他的颜色,事实上这三种颜色就是美术中的三原色,它们是不能再分解的基本颜色。在计算机中,我们可以将红、绿、蓝三种色光...
- python如何给图片添加文字水印?_python如何给图片添加文字水印
-
方法:方法简单粗暴,打开图片然后在合适的位置绘制文字,最后保存。python可以使用PIL库来操作图片,不过据说PIL不支持python3,使用pillow作为替代。安装pillow:pipins...
- 游戏外挂,用Python输过谁?_python写游戏辅助脚本教程
-
玩过电脑游戏的同学对于外挂肯定不陌生,但是你在用外挂的时候有没有想过如何做一个外挂呢?我打开了4399小游戏网,点开了一个不知名的游戏,唔,做寿司的,有材料在一边,客人过来后说出他们的要求,你按照菜单...
- 如何使用python裁剪图片?_python图片截取
-
如何使用python裁剪图片如上图所示,这是一张包含了各类象棋棋子的图片。我们需要将其中每一个棋子都裁剪出来,此时可以利用python的PIL库实现。一、安装PIL库如果此前没有安装过PIL库,...
- Python图像处理神器!Pillow库从入门到精通,这教程太全了
-
Pillow是Python中一个强大的图像处理库,是PIL(PythonImagingLibrary)的分支和升级版本。本教程将介绍Pillow的基本用法和常见操作。##安装Pillow```p...
- Python自动化办公应用学习笔记37—文件读写方法1
-
一、文件读写方法1.读取内容:read(size):读取指定大小的数据,如果不指定size,则读取整个文件。data=file.read(100)#读取前100字节readline():读取一...
- 一周热门
- 最近发表
- 标签列表
-
- ps图案在哪里 (33)
- super().__init__ (33)
- python 获取日期 (34)
- 0xa (36)
- super().__init__()详解 (33)
- python安装包在哪里找 (33)
- linux查看python版本信息 (35)
- python怎么改成中文 (35)
- php文件怎么在浏览器运行 (33)
- eval在python中的意思 (33)
- python安装opencv库 (35)
- python div (34)
- sticky css (33)
- python中random.randint()函数 (34)
- python去掉字符串中的指定字符 (33)
- python入门经典100题 (34)
- anaconda安装路径 (34)
- yield和return的区别 (33)
- 1到10的阶乘之和是多少 (35)
- python安装sklearn库 (33)
- dom和bom区别 (33)
- js 替换指定位置的字符 (33)
- python判断元素是否存在 (33)
- sorted key (33)
- shutil.copy() (33)