Created
February 21, 2017 12:37
-
-
Save xiazhibin/55dd35167778385d58b47e5a1bb83253 to your computer and use it in GitHub Desktop.
pic to ascii
This file contains hidden or 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
from PIL import Image | |
import argparse | |
ascii_char = list("$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-A_MTYUEJD+~<>i!lI;:,\"^`'. ") | |
def get_char(r, g, b, alpha=256): | |
if alpha == 0: | |
return ' ' | |
length = len(ascii_char) | |
gray = int(0.2126 * r + 0.7152 * g + 0.0722 * b) | |
unit = (256.0 + 1) / length | |
return ascii_char[int(gray / unit)] | |
parser = argparse.ArgumentParser() | |
parser.add_argument('file') | |
parser.add_argument('-o', '--output') | |
parser.add_argument('--width', type=int, default=50) | |
parser.add_argument('--height', type=int, default=50) | |
args = parser.parse_args() | |
IMG = args.file | |
WIDTH = args.width | |
HEIGHT = args.height | |
OUTPUT = args.output | |
if __name__ == '__main__': | |
im = Image.open(IMG) | |
im = im.resize((WIDTH, HEIGHT), Image.NEAREST) | |
txt = "" | |
for i in range(HEIGHT): | |
for j in range(WIDTH): | |
txt += get_char(*im.getpixel((j, i))) | |
txt += '\n' | |
if OUTPUT: | |
with open(OUTPUT, 'w') as f: | |
f.write(txt) | |
else: | |
with open("output.txt", 'w') as f: | |
f.write(txt) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment