This commit is contained in:
2018-03-15 15:04:46 +01:00
parent df779ae6f7
commit 03f11b1620
9 changed files with 0 additions and 0 deletions

8
Pass3/images.py Executable file
View File

@@ -0,0 +1,8 @@
from PIL import Image #måste installera pillow
try:
myimage = Image.open("Python.png")
except:
print("Unable to load image")
myimage.load()
print(myimage.format, myimage.size, myimage.mode)
myimage.show()