在本文中,我们将学习什么是flip()函数。本质上,此函数返回翻转的图像。翻转效果翻转图像uspside-down或创建图像的垂直反射。此函数不需要参数。
用法: wand.image.flip()
参数:flip()函数中没有参数。
源图像:
范例1:
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
with img.clone() as fimg:
# flip image using flip() function
fimg.flip()
fimg.save(filename ='koalaflipped.jpeg')
输出:
范例2:
源图像:
from wand.image import Image
# Read image using Image function
with Image(filename ="man.jpeg") as img:
with img.clone() as fimg:
# flip image using flip() function
fimg.flip()
fimg.save(filename ='manflipped.jpeg')
输出:
相关用法
- Python Wand flip()用法及代码示例
- Python PIL ImageOps.flip()用法及代码示例
- Python Pgmagick flip()用法及代码示例
- Python OpenCV cv2.flip()用法及代码示例
- Python numpy.flip()用法及代码示例
- Python Wand function()用法及代码示例
- Python Wand gaussian_blur()用法及代码示例
- Python Wand transform()用法及代码示例
- Python Wand crop()用法及代码示例
- Python Wand rotational_blur()用法及代码示例
- Python Wand Image()用法及代码示例
- Python Wand shade()用法及代码示例
- Python Wand sharpen()用法及代码示例
- Python Wand adaptive_sharpen()用法及代码示例
- Python Wand noise()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand flip() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。