基于python实现图片转字符画代码实例
直接上代码图片就使用我家爽妹子的吧
如果没有安装pil模块的话先cmd安装下
输入:pip install pillow
# -*- coding: utf-8 -*-from PIL import ImagecodeLib = ’’’@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/|()1{}[]?-_+~<>i!lI;:,'^`’. ’’’#生成字符画所需的字符集count = len(codeLib)def transform1(image_file): image_file = image_file.convert('L')#转换为黑白图片,参数'L'表示黑白模式 codePic = ’’ for h in range(0,image_file.size[1]): #size属性表示图片的分辨率,’0’为横向大小,’1’为纵向 for w in range(0,image_file.size[0]): gray = image_file.getpixel((w,h)) #返回指定位置的像素,如果所打开的图像是多层次的图片,那这个方法就返回一个元组 codePic = codePic + codeLib[int(((count-1)*gray)/256)]#建立灰度与字符集的映射 codePic = codePic+’rn’ return codePicdef transform2(image_file): codePic = ’’ for h in range(0,image_file.size[1]): for w in range(0,image_file.size[0]): g,r,b = image_file.getpixel((w,h)) gray = int(r* 0.299+g* 0.587+b* 0.114) codePic = codePic + codeLib[int(((count-1)*gray)/256)] codePic = codePic+’rn’ return codePicfp = open(r’C:路径3.jpg’,’rb’)image_file = Image.open(fp)image_file=image_file.resize((int(image_file.size[0]*0.2), int(image_file.size[1]*0.1)))#调整图片大小print (u’Info:’,image_file.size[0],’ ’,image_file.size[1],’ ’,count)tmp = open(’tmp.txt’,’w’)tmp.write(transform1(image_file))tmp.close()a,b,c=1,2,3print(a,b,c)
结果不知还能否看出来
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持好吧啦网。
相关文章:
1. javascript设计模式 ? 建造者模式原理与应用实例分析2. IDEA的Mybatis Generator驼峰配置问题3. 一篇文章带你了解JavaScript-对象4. Express 框架中使用 EJS 模板引擎并结合 silly-datetime 库进行日期格式化的实现方法5. Python使用oslo.vmware管理ESXI虚拟机的示例参考6. IntelliJ IDEA设置条件断点的方法步骤7. Java构建JDBC应用程序的实例操作8. Jsp中request的3个基础实践9. 浅谈SpringMVC jsp前台获取参数的方式 EL表达式10. python flask框架快速入门
