2021
03-09
03-09
python pdfkit 中文乱码问题的解决方案
使用pythonpdfkit生成pdf文件中遇到中文乱码问题1.生成的文件名不能带有中文字符2.生成的pdf内容中文为乱码生成的文件名不能带有中文字符解决方法:我暂时想到的处理方式是先生成英文文件名,再将这个文件重命名为中文的文件名#coding=utf8importosimportpdfkitfromuuidimportuuid1ret='<html><head><metacharset="UTF-8"></head><body><h1>测试pdf内容部分</h1></body></html>'.decode('utf8')file_name=str(uuid1())p...
继续阅读 >