微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 Adob​​e pdf services API 上将 .pdf 转换为 .docx使用 Python

如何解决在 Adob​​e pdf services API 上将 .pdf 转换为 .docx使用 Python

我正在尝试编写一个 Python 程序,将“.pdf”文件转换为“.docx”文件,使用 Adob​​e PDF Server API(免费试用)。

我发现可以将任何“.pdf”文件转换为包含“.txt”文件(恢复文本数据)和“.excel”文件(返回表格数据)的“.zip”文件的文献。

import logging
import os.path

from adobe.pdfservices.operation.auth.credentials import Credentials
from adobe.pdfservices.operation.exception.exceptions import ServiceApiException,ServiceUsageException,SdkException
from adobe.pdfservices.operation.pdfops.options.extractpdf.extract_pdf_options import ExtractPDFOptions
from adobe.pdfservices.operation.pdfops.options.extractpdf.extract_element_type import ExtractElementType
from adobe.pdfservices.operation.execution_context import ExecutionContext
from adobe.pdfservices.operation.io.file_ref import FileRef
from adobe.pdfservices.operation.pdfops.extract_pdf_operation import ExtractPDFOperation


logging.basicConfig(level=os.environ.get("LOGLEVEL","INFO"))

try:
    # get base path.
    base_path =os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath("C:/..link.../extractpdf/extract_txt_from_pdf.ipynb"))))

    # Initial setup,create credentials instance.
    credentials = Credentials.service_account_credentials_builder()\
        .from_file(base_path + "\\pdfservices-api-credentials.json") \
        .build()

    #Create an ExecutionContext using credentials and create a new operation instance.
    execution_context = ExecutionContext.create(credentials)
    extract_pdf_operation = ExtractPDFOperation.create_new()

    #Set operation input from a source file.
    source = FileRef.create_from_local_file(base_path + "/resources/trs_pdf_file.pdf")
    extract_pdf_operation.set_input(source)

    # Build ExtractPDF options and set them into the operation
    extract_pdf_options: ExtractPDFOptions = ExtractPDFOptions.builder() \
        .with_element_to_extract(ExtractElementType.TEXT) \
        .with_element_to_extract(ExtractElementType.TABLES) \
        .build()
    extract_pdf_operation.set_options(extract_pdf_options)

    #Execute the operation.
    result: FileRef = extract_pdf_operation.execute(execution_context)

    # Save the result to the specified location.
    result.save_as(base_path + "/output/Extract_TextTableau_From_trs_pdf_file.zip")
except (ServiceApiException,SdkException):
    logging.exception("Exception encountered while executing operation")

但我还不能完成转换为“.docx”文件,将提取文件名称更改为 name.docx

我阅读了 adobe.pdfservices.operation.pdfops.options.extractpdf.extract_pdf_options.ExtractPDFOptions() 的文献,但没有找到调整提取并将其从“.zip”更改为“.docx”的方法。接下来我可以尝试什么?

解决方法

遗憾的是,目前 Python SDK 仅支持我们 PDF 服务的提取部分。您可以通过 REST API (https://documentcloud.adobe.com/document-services/index.html#how-to-get-started-) 使用这些服务作为替代。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?