python Pillow 的简单案例

Posted zeopean

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Pillow 的简单案例相关的知识,希望对你有一定的参考价值。

#代码来自 实验楼https://www.shiyanlou.com/courses/

#encoding=utf-8
#/usr/bin/env python
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=50)
parser.add_argument(‘--height‘ , type=int , default=50)

args = parser.parse_args()

IMG = args.file
WIDTH = args.width
HEIGHT = args.height
OUTPUT = args.output

 


ascii_char = list("[email protected]%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`‘. ")

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‘

if OUTPUT:
with open(OUTPUT , ‘w‘) as f:
f.write(txt)

else:
with open(‘output.txt‘,‘w‘) as f:
f.write(txt)

 

以上是关于python Pillow 的简单案例的主要内容,如果未能解决你的问题,请参考以下文章

python----图像简单处理(PIL or Pillow)

《Python实例》用Pillow录制屏幕,制作gif ,太简单了

python安装pillow模块错误

python 简单的Pytho WebSocket

python爬虫详细解析附案例

Pillow画图