用python怎样实现图片转字符画的效果?
Admin 2021-09-06 群英技术资讯 472 次浏览
用python怎样实现图片转字符画的效果?相信不少朋友应该都有看过用一些字符组成起来图片的,放大来看是一个字符,全图来看又是一副完整图片,是不是很有意思呢?那么这样的效果是怎样实现的呢?下面和小编一起来看看吧。
利用 PIL
库来获取图片并修改大小,利用灰度值转换公式把每一个像素的 RGB
值转为灰度值
gray = int(0.2126*r+0.7152*g+0.0722*b)
再从字符集里获取对应的字符
asciis = list('M%$@#&WNBRwm8S5A4E3KXFPH69nsxeazgpqbdoctfhkyvuGZYVTUCI2QOD0L7Jjl1ri!^{}[]()/|;:*<>_~-,. ')
最后将字符连接起来并保存就完成了
在这个工程中,我们需要的第三方库是 PIL
库,但我们不用 pip install PIL
来安装它,而是使用 pip install pillow
pip install pillow
导入库
在导入 PIL
库时,不能用 import pillow
,应使用 import PIL
from PIL import Image as Image
inputfile = input('inputfile:') outputfile = input('outputfile:') distance = {'y':' ','':' ','n':''} distance = distance[input('distance?(Y/n):')] re = input("resize?:")
字母占用的位置是矩形的,因此生成出来的字符画会被“挤压”。我们可以在字母与字母之间添加空格来防止这种情况的发生。
如果图片太大了,会导致耗费时间过长、乱码等问题。我们应该对图片进行必要的缩放。在询问“resize?”时,可以设置以下几种回答:
回答方式 | 作用 |
---|---|
“”,啥也不输入 | 不缩放 |
“100”,边长 | 输入单个数字时,会按比例缩放为较长边为此长度的矩形 |
“100,200”,宽和高 | 缩放为指定宽高的矩形 |
使用 PIL
的 open
函数打开图片
image = Image.open(inputfile)
注意:这里的 open 函数不要和 python 内置函数 open 混淆
获取图片大小
w, h = image.size
获取变量 re
中存储的大小信息,并用函数 split
分割
nwh = re.split(',') for i in range(len(nwh)): nwh[i] = int(nwh[i])
调整图片大小
if len(nwh) == 1: #如果项数为1,表示用户只输入了一个数字。即按比例缩放为较长边为此长度的矩形 ww = int(nwh[0] / max(w,h) * w) #max函数获取较大值 hh = int(nwh[0] / max(w,h) * h) image = image.resize((ww,hh),Image.ANTIALIAS) #改变图片大小 #第一个参数放入一个元组,指定宽高 #第二个参数 Image.ANTIALIAS 表示获取高质量图片 else: #项数不为1,缩放为指定宽高的矩形 image = image.resize((nwh[0],nwh[1]),Image.ANTIALIAS)
指定转换的字符集
asciis = list('M%$@#&WNBRwm8S5A4E3KXFPH69nsxeazgpqbdoctfhkyvuGZYVTUCI2QOD0L7Jjl1ri!^{}[]()/|;:*<>_~-,. ') #list函数将字符串转换为列表
定义转换字符的函数
def getasc(r,g,b,t=100): #t为透明度 if t == 0: return(' ') #如果是透明的,则直接返回空值 else: asc = '' gray = int(0.2126*r+0.7152*g+0.0722*b) #转灰度值 asc = asciis[int(len(asciis)/256*(gray))] #获取字符 return(asc)
开始转换字符
for i in range(h): for o in range(w): #按行读取每一个像素的RGB值 p = image.getpixel((o,i)) g = getasc(*p) # * 将参数列表转换为多个项 txt = txt + g + distance #连接字符 txt = txt + '\n' #换行
函数 getpixel
获取指定位置的 RGB
值,它的第一个参数为元组,传入像素位置 (x,y)
,如果图片是 JPG
格式的,它会返回含三项的列表 [r,g,b]
,如果图片是 PNG
格式的,它会返回含四项的列表 [r,g,b,t]
,t
是透明度
使用 python
内置函数 open
保存文件
with open(outputfile,'w') as f: # 'w' 表示写入 f.write(txt)
================== RESTART: D:\Python38-32\Files\ji2a\ji2a.py ==================
=====image to ascii=====
inputfile:
dora.png
outputfile:
dora.txt
distance?(Y/n):
y
resize?(needn't:'', square:side length, restangle:width,height):
100Opening 'dora.png'...
Getting...
Saving...
Seccessfully
原图:
结果:
from PIL import Image as Image asciis = list('M%$@#&WNBRwm8S5A4E3KXFPH69nsxeazgpqbdoctfhkyvuGZYVTUCI2QOD0L7Jjl1ri!^{}[]()/|;:*<>_~-,. ') #gray = int(0.2126*r+0.7152*g+0.0722*b) def main(): global asciis print('=====image to ascii=====') inputfile, outputfile, distance, re = getargs() image = openfile(inputfile) image = resize(image,re) w, h = image.size txt = gettxt(image,w,h,distance) savefile(outputfile,txt) print('Seccessfully') def getargs(): inputfile = input('inputfile:\n') outputfile = input('outputfile:\n') distance = {'':' ','y':' ','n':''} distance = distance[input('distance?(Y/n):\n')] re = input("resize?(needn't:'', square:side length, restangle:width,height):\n") return(inputfile,outputfile,distance,re) def openfile(inputfile): print("\nOpening '"+inputfile+"'...") image = Image.open(inputfile) return(image) def resize(image,re): if re != '': print('Resizing...') nwh = re.split(',') for i in range(len(nwh)):nwh[i]=int(nwh[i]) w, h = image.size if len(nwh) == 1: ww = int(nwh[0] / max(w,h) * w) hh = int(nwh[0] / max(w,h) * h) image = image.resize((ww,hh),Image.ANTIALIAS) else: image = image.resize((nwh[0],nwh[1]),Image.ANTIALIAS) return(image) def gettxt(image,w,h,distance): txt = '' print('Getting...') for i in range(h): for o in range(w): p = image.getpixel((o,i)) txt = txt + getasc(*p) + distance txt = txt + '\n' return(txt) def getasc(r,g,b,t=100): if t == 0: return(' ') else: asc = '' gray = int(0.2126*r+0.7152*g+0.0722*b) asc = asciis[int(len(asciis)/256*(gray))] return(asc) def savefile(outputfile,txt): print('Saving...') with open(outputfile,'w') as f: f.write(txt) return() if __name__ == '__main__': main()
此代码在 Python3.8 下调试通过
我们的图片转字符画程序完成了!
要想将它打造成一个真正的命令行工具,可以加入命令行参数功能,
利用 sys
模块的 argv
函数获取命令行参数,
利用 getopt
模块的 getop
函数解析命令行参数。
关于python中实现图片转字符画就分享到这,上述实例具有一定的借鉴价值,感兴趣的朋友可以参考学习,希望能对大家有帮助,想要了解更多python的知识,大家可以关注群英网络其它相关文章。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了python绘制玫瑰花,文章基于python的相关资料展开主题详细介绍,具有一定的参考价值,想情人节花式表白的小伙伴可以参考一下哟
这篇文章主要介绍了Python 并行加速技巧分享,文章围绕文章主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下
大家好,本篇文章主要讲的是Python项目打包成exe文件,感兴趣的同学赶快来看一看吧,对你有帮助的话记得收藏一下,方便下次浏览
进行分组聚合求均值(mean)的的时候出现了以下异常: 但是求和(sum)却不会抛出异常。 异常原因,在进行数据处理的时候存在缺失值,而且被处理的列不是float同一类型
这篇文章主要为大家介绍了Python的字典,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008