How to display a jpg file in Python?
from PIL import Image
image = Image.open('File.jpg')
image.show()
Don't forget to include
import Image
In order to show it use this :
Image.open('pathToFile').show()
from PIL import Image
image = Image.open('File.jpg')
image.show()
Don't forget to include
import Image
In order to show it use this :
Image.open('pathToFile').show()