标签: python poppler pdf-to-html
我已使用 poppler软件包的pdftohtml 将多页pdf转换为单个html文件。但是我将整个背景颜色设为灰色,而且转换后的html文件似乎保持对齐。
import subprocess subprocess.Popen([r'D:/poppler-0.68.0/bin/pdftohtml.exe', '-c','-s', '-i', '-noframes','new.pdf','new.html'])
我可以让html页面居中对齐,最重要的是背景应该是白色的吗?