我在尝试开发网络应用程序时遇到了问题,该应用程序的一部分将上载的docx文件转换为pdf文件(经过一些处理)。随着python-docx等方法,我不要求在Linux上窗机安装字,甚至LibreOffice的,对于大多数加工的(我的Web服务器是pythonanywhere - Linux,但没有LibreOffice的,没有sudo或apt install权限)。但是转换为pdf似乎需要其中之一。通过探索这里和其他地方的问题,到目前为止,这就是我所拥有的:
import subprocess
try:
from comtypes import client
except ImportError:
client = None
def doc2pdf(doc):
"""
convert a doc/docx document to pdf format
:param doc: path to document
"""
doc = os.path.abspath(doc) # bugfix - searching files in windows/system32
if client is None:
return doc2pdf_linux(doc)
name, ext = os.path.splitext(doc)
try:
word = client.CreateObject('Word.Application')
worddoc = word.Documents.Open(doc)
worddoc.SaveAs(name + '.pdf', FileFormat=17)
except Exception:
raise
finally:
worddoc.Close()
word.Quit()
def doc2pdf_linux(doc):
"""
convert a doc/docx document to pdf format (linux only, requires libreoffice)
:param doc: path to document
"""
cmd = 'libreoffice --convert-to pdf'.split() + [doc]
p = subprocess.Popen(cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
p.wait(timeout=10)
stdout, stderr = p.communicate()
if stderr:
raise subprocess.SubprocessError(stderr)
如您所见,一种方法需要comtypes,另一种方法需要libreoffice作为子流程。除了切换到更复杂的托管服务器之外,还有什么解决方案吗?
繁花不似锦
相关分类