python 中文名称文件保存

python 保存中文遇到问题,最终的方案如下:

需要引入codecs类库

import codecs
content = u'你好,北京欢迎你'
with codecs.open('aaa.txt','w','utf-8') as f:
	f.write(content)

通过这个可以解决中文无法正确保存的问题

opencv保存含有中文路径的图片

问题描述:无法正确的存储到图片,可能还没有数据生成
解决方案: 将imwrite方式换为imencode方式

cv2.imwrite(cimg, img)
##保存方式换为 
cv2.imencode('.jpg', img)[1].tofile('保存_1.jpg')

你可能感兴趣的:(中文名称)