使用纯Python将docx转换为pdf(在Linux上,没有libreoffice)

时间:2018-06-22 06:39:31

标签: python pdf docx pythonanywhere python-docx

我在尝试开发网络应用程序时遇到了问题,该应用程序的一部分将上载的docx文件转换为pdf文件(经过一些处理)。使用python-docx和其他方法,对于大多数处理,我不需要安装有Word的Windows机器,甚至不需要linux上的libreoffice(我的Web服务器是pythonanywhere-linux,但没有libreoffice和sudoapt 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作为子流程。除了切换到更复杂的托管服务器之外,还有其他解决方案吗?

2 个答案:

答案 0 :(得分:9)

PythonAnywhere帮助页面在此处提供有关使用PDF文件的信息:https://help.pythonanywhere.com/pages/PDF

摘要:PythonAnywhere安装了许多用于PDF操作的Python软件包,其中一个可以满足您的要求。但是,对我而言,炮轰abiword似乎最简单。 shell命令abiword --to=pdf filetoconvert.docx将docx文件转换为PDF,并在与docx相同的目录中生成名为filetoconvert.pdf的文件。请注意,此命令将向标准错误流输出一条错误消息,抱怨XDG_RUNTIME_DIR(或者至少对我有用),但该命令仍然有效,并且可以忽略该错误消息。

答案 1 :(得分:0)

您可以使用的另一种libreoffice,但是正如第一响应者所说,其质量永远不会像使用实际商品一样好。

无论如何,在安装libreoffice之后,这是执行此操作的代码。

from subprocess import  Popen
LIBRE_OFFICE = r"C:\Program Files\LibreOffice\program\soffice.exe"

def convert_to_pdf(input_docx, out_folder):
    p = Popen([LIBRE_OFFICE, '--headless', '--convert-to', 'pdf', '--outdir',
               out_folder, input_docx])
    print([LIBRE_OFFICE, '--convert-to', 'pdf', input_docx])
    p.communicate()


sample_doc = 'file.docx'
out_folder = 'some_folder'
convert_to_pdf(sample_doc, out_folder)