Python PIL | Método Image.crop()

PIL es la biblioteca de imágenes de Python que proporciona al intérprete de Python capacidades de edición de imágenes. El método PIL.Image.crop() se utiliza para recortar una parte rectangular de cualquier imagen.
 

Sintaxis: PIL.Image.crop(caja = Ninguno)
Parámetros: 
caja: una tupla de 4 que define las coordenadas de píxel izquierdo, superior, derecho e inferior.
Tipo de devolución: Imagen (Devuelve una región rectangular como (izquierda, superior, derecha, inferior)-tupla).
Devolución: un objeto de imagen
 

Código #1: 
 

Python3

# Importing Image class from PIL module
from PIL import Image
 
# Opens a image in RGB mode
im = Image.open(r"C:\Users\Admin\Pictures\geeks.png")
 
# Size of the image in pixels (size of original image)
# (This is not mandatory)
width, height = im.size
 
# Setting the points for cropped image
left = 5
top = height / 4
right = 164
bottom = 3 * height / 4
 
# Cropped image of above dimension
# (It will not change original image)
im1 = im.crop((left, top, right, bottom))
 
# Shows the image in image viewer
im1.show()

Imagen original 
 

Producción: 
 

  
Código #2: 
 

Python3

# Importing Image class from PIL module
from PIL import Image
 
# Opens a image in RGB mode
im = Image.open(r"C:\Users\Admin\Pictures\network.png")
 
# Setting the points for cropped image
left = 155
top = 65
right = 360
bottom = 270
 
# Cropped image of above dimension
# (It will not change original image)
im1 = im.crop((left, top, right, bottom))
 
# Shows the image in image viewer
im1.show()

Imagen original: 
 

Producción: 
 

Publicación traducida automáticamente

Artículo escrito por sanjeev2552 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *