旋转会改变图像的方向或将图像旋转到特定角度。 rotae()的程度可以为0到359。(实际上,您可以传递360、361或更多,但分别等于0、1或更多。)
用法:
wand.image.rotatae(degree, background, reset_coords)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
degree | numbers.Real | 旋转的角度。 360的倍数没有影响 |
background | wand.color.Color | 可选的背景色。默认是透明的。 |
reset_coords | bool | 可选标志。如果设置,则旋转后,坐标系将重定位到新图像的左上角。默认情况下为True。 |
源图像:
范例1:
# Import Image from wand.image module
from wand.image import Image
with Image(filename ="koala.jpeg") as img:
with img.clone() as rotated:
# rotate image using rotate() function
rotated.rotate(90)
rotated.save(filename ='transform-rotated-90.jpg')
输出:
范例2:
# Import Image from wand.image module
from wand.image import Image
from wand.color import Color
with Image(filename ="koala.jpeg") as img:
with img.clone() as rotated:
# rotate image using rotate() function
rotated.rotate(135, background = Color('rgb(229, 221, 112)'))
rotated.save(filename ='transform-rotated-135.jpg')
输出:
相关用法
- Python Wand rotate()用法及代码示例
- 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()用法及代码示例
- Python Wand colorize()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 Wand rotate() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。