從Python到戴森球計劃(字符畫)
剛開始自學(xué)Python,正好在玩戴森球計劃,就抄作業(yè)弄了個圖片轉(zhuǎn)字符畫,成果如下:

---------------------------------------------------------------------------------
1.Python3,先安裝Pillow庫
2.文中c:/Users/MK/Desktop/daisengqiu.jpg請?zhí)鎿Q成自己的圖片路徑和名稱
3.輸出的txt文檔記得修改字體,可設(shè)置為Consolas等字體,確保字符等寬,避免圖形扭曲
? ? 代碼如下:
from PIL import Image
img = Image.open("c:/Users/MK/Desktop/daisengqiu.jpg")
out = img.convert("L")
width,height = out.size
out = out.resize((int(width * 1),int(height * 0.5)))
width,height = out.size
img.save("c:/Users/MK/Desktop/daisengqiu_2.jpg")
asciis ="@#%*+=-. "
texts = ""
for row in range(height):
? ?for col in range(width):
? ? ? ?gray = out.getpixel((col, row)) ?#獲取灰度值
? ? ? ?texts += asciis[int(gray/255*8)]
? ?texts += "\n"
with open("c:/Users/MK/Desktop/daisengqiu.txt","w") as file:
? ?file.write(texts)
3.輸出的txt文檔記得修改字體,可設(shè)置為Consolas等字體,確保字符等寬,避免圖形扭曲

--------------------------------------------------------------------------------------
等一個大佬實現(xiàn)戴森球編程
?