Created
October 20, 2017 13:00
-
-
Save tejas-kr/c62deb0dc3223eff4b0450bcac9ac011 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Command line based image viewer | |
# made purely with python 2.7 | |
from PIL import Image | |
from sys import argv | |
img = Image.open(argv[1]) | |
img.show() | |
# Wondoers in Just 4 lines of code. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment