本帖最后由 逸少凌仙 于 2020-4-3 13:35 编辑
参考网上的一些教程编写的一款功能简单的小工具,可以将图片转换为用字符代替的图画。
效果:
原图
转换后
放大后效果图:
软件运行界面
源码:
[Python] 纯文本查看 复制代码 # -*- coding:utf-8 -*-
from PIL import Image, ImageFont, ImageDraw
from tkinter import filedialog, Tk
def open_path():
# 图片路径
root = Tk()
root.withdraw()
file_path = (filedialog.askopenfilename(title='选择图片文件', filetypes=[('All Files', '*')]))
return file_path
print('请选择图片:')
IMG = open_path() # 文件路径
ascii_char = list("ABCDE") # 所用字符列表
print('正在转换......')
# 将256灰度映射到70个字符上
def get_char(r, g, b, alpha=256): # alpha透明度
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)] # 不同的灰度对应着不同的字符
def save_path():
# 图片路径
root = Tk()
root.withdraw()
file_path = (filedialog.asksaveasfilename(title='选择图片文件', filetypes=[('All Files', '*')]))
return file_path
# 通过灰度来区分色块
# 该部分以下和灰度值字符画区别所在
if __name__ == '__main__':
im = Image.open(IMG)
WIDTH = int(im.width / 6) # 高度比例为原图的1/6较好,由于字体宽度
HEIGHT = int(im.height / 15) # 高度比例为原图的1/15较好,由于字体高度
im_txt = Image.new("RGB", (im.width, im.height), (255, 255, 255))
im = im.resize((WIDTH, HEIGHT), Image.NEAREST)
txt = ""
colors = []
for i in range(HEIGHT):
for j in range(WIDTH):
pixel = im.getpixel((j, i))
colors.append((pixel[0], pixel[1], pixel[2])) # 记录像素颜色信息
if (len(pixel) == 4):
txt += get_char(pixel[0], pixel[1], pixel[2], pixel[3])
else:
txt += get_char(pixel[0], pixel[1], pixel[2])
txt += '\n'
colors.append((255, 255, 255))
dr = ImageDraw.Draw(im_txt)
font = ImageFont.load_default().font # 获取字体
x = y = 0
# 获取字体的宽高
font_w, font_h = font.getsize(txt[1])
font_h *= 1.37 # 调整后更佳
# ImageDraw为每个ascii码进行上色
for i in range(len(txt)):
if (txt[i] == '\n'):
x += font_h
y = -font_w
dr.text([y, x], txt[i], colors[i])
y += font_w
# 输出
print('转换成功!')
print('请选择保存路径:')
save_path = save_path()+'.png'
im_txt.save(save_path)
print('保存成功')
im = Image.open(save_path)
im.show()
可以修改 这一行ascii_char = list("ABCDE") # 所用字符列表,将里面的ABCDE修改成自己想要的字符,就像我之前就搞成我女朋友的名字拼音。。。
蓝奏云地址:https://www.lanzouj.com/iatmzvc |