📜  Python中的魔杖旋转()函数

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

Python中的魔杖旋转()函数

旋转改变图像的方向或将图像旋转到特定角度。 rotate()的度数可以是 0 到 359。(实际上您可以传递 360、361 或更多,但分别与 0、1 或更多相同。)。

源图像:

示例 1:

Python3
wand.image.rotate(degree, background, reset_coords)


Python3
# 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:

Python3

# 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')

输出 :