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().
Ejemplo 1:
Imagen de origen:
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: # flopped image using flop() function fimg.flop() fimg.save(filename ='koalaflopped.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: # flopped image using flop() function fimg.flop() fimg.save(filename ='manflopped.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