python oracle 中文乱码_解决Python3用PIL的ImageFont输出中文乱码的问题
今天在用python3+ImageFont输出中文时,结果显示乱码# coding:utf-8from PIL import Image, ImageDraw, ImageFontimage= Image.new('RGB', (559, 320),(255,255,255))draw = ImageDraw.Draw(image)# draw.text()font = ImageFont.tru...