📜  Python PIL | ImageOps.fit() 方法

📅  最后修改于: 2022-05-13 01:55:19.480000             🧑  作者: Mango

Python PIL | ImageOps.fit() 方法


PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 ImageOps 模块包含许多“现成的”图像处理操作。这个模块有点实验性,大多数运算符只处理 L 和 RGB 图像。

ImageOps.fit()方法返回图像的大小和裁剪版本,裁剪为请求的纵横比和大小。

使用的图像:

# Importing Image and ImageOps module from PIL package
from PIL import Image, ImageOps
  
# creating a image1 object
im1 = Image.open(r"C:\Users\System-Pc\Desktop\circleimage.PNG")
  
# applying fit method
# Setting width = 100 and height = 100
im2 = ImageOps.fit(im1, (100, 100), method = 0,
                   bleed = 0.0, centering =(0.5, 0.5))
  
im2.show()

输出: