PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.transpose()
转置图像(以90度为单位翻转或旋转)
用法: Transpose image (flip or rotate in 90 degree steps)
参数:
method-PIL.Image.FLIP_LEFT_RIGHT,PIL.Image.FLIP_TOP_BOTTOM,PIL.Image.ROTATE_90,PIL.Image.ROTATE_180,PIL.Image.ROTATE_270或PIL.Image.TRANSPOSE之一。
返回类型:图像对象。
使用的图片:
# Improting Image class from PIL module
from PIL import Image
# Opens a image in RGB mode
im = Image.open(r"C:\Users\System-Pc\Desktop\new.jpg")
# Size of the image in pixels (size of orginal image)
# (This is not mandatory)
width, height = im.size
# Setting the points for cropped image
left = 6
top = height / 4
right = 174
bottom = 3 * height / 4
# Cropped image of above dimension
# (It will not change orginal image)
im1 = im.crop((left, top, right, bottom))
newsize = (200, 200)
im1 = im1.transpose(Image.FLIP_LEFT_RIGHT)
# Shows the image in image viewer
im1.show()
输出:
另一个例子:此处,变换参数已更改。
图片已使用
# Improting Image class from PIL module
from PIL import Image
# Opens a image in RGB mode
im = Image.open(r"C:\Users\System-Pc\Desktop\flower1.jpg")
# Size of the image in pixels (size of orginal image)
# (This is not mandatory)
width, height = im.size
# Setting the points for cropped image
left = 3
top = height / 2
right = 164
bottom = 3 * height / 2
# Cropped image of above dimension
# (It will not change orginal image)
im1 = im.crop((left, top, right, bottom))
newsize = (1800, 1800)
im1 = im1.transpose(Image.FLIP_TOP_BOTTOM)
# Shows the image in image viewer
im1.show()
输出:
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.transpose() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。