“Imagen de cultivo” Código de respuesta

Imagen de cultivo Python

from PIL import Image # import pillow library (can install with "pip install pillow")
im = Image.open('card.png')
im = im.crop( (1, 0, 826, 1125) ) # previously, image was 826 pixels wide, cropping to 825 pixels wide
im.save('card.png') # saves the image
# im.show() # opens the image
JonnyG

Imagen de cultivo

im = Image.open('image.jpg') 
im = im.crop((left, top, right, bottom))  # coordinates of the crop
Johan

Imagen de cambio de tamaño

im = Image.open('image.jpg')  
im = im.resize((w, h)) 
Johan

Respuestas similares a “Imagen de cultivo”

Preguntas similares a “Imagen de cultivo”

Más respuestas relacionadas con “Imagen de cultivo” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código