Python Image库 - 基本操作
程序员文章站
2022-07-08 12:38:41
from PIL import Imageimg = Image.open("") # 打开图像img = Image.new(mode: "RGB", (width, height)) # 新建图片对象img.getpixel((0, 0)) # 获取坐标值rgb值img.putpixel((0, 0), (r, g, b)) # 设置坐标像素值img.convert('1') # 二值化img.convert('L') # 灰度图像img.convert('P') #......
from PIL import Image
img = Image.open("") # 打开图像
img = Image.new(mode: "RGB", (width, height)) # 新建图片对象
img.getpixel((0, 0)) # 获取坐标值rgb值
img.putpixel((0, 0), (r, g, b)) # 设置坐标像素值
img.convert('1') # 二值化
img.convert('L') # 灰度图像
img.convert('P') # 8位彩色图像
img.convert('RGBA') # 32位彩色图像
img.convert('CMKY') # 印刷四分色模式
img.convert('F') # 32位浮点灰色图像
img.crop((left, top, right, buttom)) # 根据左上和右下两个坐标值裁剪图像
img.save(filename) # 保存图像
# 裁剪并保存图像,链式调用
img.crop((x1, y1, x2, y2)).save("abc.png")
本文地址:https://blog.csdn.net/qq_40734108/article/details/110411863