Recuerda que en la informática cualquier problema suele tener varias resoluciones, por lo tanto nosotros te compartiremos la mejor y más eficiente.
Ejemplo: recortar imagen 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
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)