Gráficos, Python ContenidosCódigo en PythonImagen sin cambiar tamañoImagen cambiada de tamaño Código en Python from PIL import Image img = Image.open('1.jpg') new_img = img.resize((256,256)) new_img.save('1-256x256.png','png') Imagen sin cambiar tamaño Imagen cambiada de tamaño