最近在学习python,看到网上用python将图片转换成字符画便来学习一下
题目意思是,程序读入一个图片,以txt格式输出图片对应的字符画,如图所示:
以下是python代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# coding:utf-8
# 为一张图片生成对应的字符集图片
from pil import image
import argparse
# 命令行输入参数处理
parser = argparse.argumentparser()
parser.add_argument( 'file' ) # 输入文件
parser.add_argument( '-o' , '--output' ) # 输出文件
parser.add_argument( '--width' , type = int , default = 80 ) # 输出字符画宽
parser.add_argument( '--height' , type = int , default = 80 ) # 输出字符画高
# 获取参数
args = parser.parse_args()
img = args. file
width = args.width
height = args.height
output = args.output
ascii_char = list ( "$@b%8&wm#*oahkbdpqwmzo0qlcjuyxzcvunxrjft/\|()1{}[]?-_+~<>i!li;:,\"^`'. " )
# 将256灰度映射到70个字符上
def get_char(r, b, g, 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)]
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'
print txt
# 字符画输出到文件
if output:
with open (output, 'w' ) as f:
f.write(txt)
else :
with open ( "output.txt" , 'w' ) as f:
f.write(txt)
|
在输出文件中得到如下字符集:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/u012050154/article/details/51096548