En este artículo aprenderemos qué es la función flip(). Básicamente, esta función devuelve una imagen invertida. El efecto Flip voltea una imagen al revés o crea un reflejo vertical de la imagen. No se necesitan argumentos en esta función.
Sintaxis: wand.image.flip()
Parámetros: Sin parámetros en la función flip().
Imagen de origen:
Ejemplo 1:
Python3
# 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')
Producción:
Ejemplo 2:
Imagen de origen:
Python3
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')
Producción:
Publicación traducida automáticamente
Artículo escrito por RahulSabharwal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA