Pillow - 翻转和旋转图像

  • 简述

    在使用 python 图像处理库处理图像时,在某些情况下,您需要翻转现有图像以从中获得更多见解,以增强其可见性或出于您的要求。
    枕头库的图像模块使我们可以非常轻松地翻转图像。我们将使用 Image 模块中的转置(方法)函数来翻转图像。“转置()”支持的一些最常用的方法是 -
    • Image.FLIP_LEFT_RIGHT− 用于水平翻转图像
    • Image.FLIP_TOP_BOTTOM− 用于垂直翻转图像
    • Image.ROTATE_90− 通过指定度数旋转图像

    示例 1:水平翻转图像

    以下 Python 示例读取图像,将其水平翻转,并使用标准 PNG 显示实用程序显示原始图像和翻转图像 -
    
    # import required image module
    from PIL import Image
    # Open an already existing image
    imageObject = Image.open("images/spiderman.jpg")
    # Do a flip of left and right
    hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)
    # Show the original image
    imageObject.show()
    # Show the horizontal flipped image
    hori_flippedImage.show()
    

    输出

    Original image
    原图6
    Flipped image
    翻转图像

    示例 2:垂直翻转的图像

    以下 Python 示例读取图像,垂直翻转,并使用标准 PNG 显示实用程序显示原始图像和翻转图像 -
    
    # import required image module
    from PIL import Image
    # Open an already existing image
    imageObject = Image.open("images/spiderman.jpg")
    # Do a flip of left and right
    hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)
    # Show the original image
    imageObject.show()
    # Show vertically flipped image
    Vert_flippedImage = imageObject.transpose(Image.FLIP_TOP_BOTTOM)
    Vert_flippedImage.show()
    

    输出

    Original Image
    原图6
    Flipped Image
    翻转图像2

    示例 3:将图像旋转到特定角度

    以下 Python 示例读取图像,旋转到指定角度,并使用标准 PNG 显示实用程序显示原始图像和旋转图像 -
    
    # import required image module
    from PIL import Image
    # Open an already existing image
    imageObject = Image.open("images/spiderman.jpg")
    # Do a flip of left and right
    hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)
    # Show the original image
    imageObject.show()
    #show 90 degree flipped image
    degree_flippedImage = imageObject.transpose(Image.ROTATE_90)
    degree_flippedImage.show()
    

    输出

    Original Image
    原图6
    Rotated Image
    旋转图像2