python3 pil open exifread convert python

python - open - pillow import image



¿Cómo mostrar un archivo jpg en Python? (2)

No olvides incluir

import Image

Para mostrarlo usa esto:

Image.open(''pathToFile'').show()

Esta pregunta ya tiene una respuesta aquí:

def show(): file = raw_input("What is the name of the image file? ") picture = Image(file) width, height = picture.size() pix = picture.getPixels()

Estoy tratando de escribir un código para mostrar esta imagen, pero este código no proporciona la imagen. ¿Cómo cambiar mi código para visualizar esta imagen?


import Image image = Image.open(''File.jpg'') image.show()