在本文中,我们将学习什么是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:
# flopped image using flop() function
fimg.flop()
fimg.save(filename ='koalaflopped.jpeg')
输出:
范例2:
源图像:
from wand.image import Image
# Read image using Image function
with Image(filename ="man.jpeg") as img:
with img.clone() as fimg:
# flopped image using flop() function
fimg.flop()
fimg.save(filename ='manflopped.jpeg')
输出:
相关用法
- Python Wand flop()用法及代码示例
- Python Pgmagick flop()用法及代码示例
- 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()用法及代码示例
- Python Wand blue_shift()用法及代码示例
- Python Wand color_matrix()用法及代码示例
- Python Wand unsharp_mask()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand flop() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。