轻松合并 文本 文档并将结果导出为 Python 代码中的 PNG 图形格式。这个 Python 库旨在使用 REST API 将多个 文本 文件组合成单个 PNG 图像,即通过 Internet 传递 HTTPS 调用。
这是一个专业的云原生 文本 到 PNG 合并解决方案,为 Python 程序员提供了极大的开发灵活性和强大的功能。通过合并文档,您可以自动化您的数字 文本/PNG 工作流程,并将流程的一些常规部分卸载到快速高效的 文本 处理 Python 软件。
在许多情况下,您可能需要将 文本 文件组合成一个 PNG 图像。例如,您可能希望在打印或归档之前将多个 文本 文件组合在一起。
文本 合并可以是整个集成文档处理方法的一部分,用于从不同的数据源生成 PNG 图像。此类任务涉及使用功能齐全的 文本/PNG 操作 Python 库,该库将处理一组 文本 文件并在尽可能短的时间内将它们合并在一起,从而产生紧凑而准确的图形输出。
要在 Python 中执行 文本 到 PNG 的合并,您至少需要两个源 文本 文档。如需快速入门,请查看下面的 Python 代码示例。
import asposewordscloud
words_api = WordsApi(client_id = '####-####-####-####-####', client_secret = '##################')
document = open('Input1.txt', 'rb')
merge_props = asposewordscloud.DocumentEntry(
file_reference=asposewordscloud.FileReference.fromRemoteFilePath('Input2.txt'),
import_format_mode='KeepSourceFormatting')
document_entries = [merge_props]
document_list = asposewordscloud.DocumentEntryList(document_entries=document_entries)
append_document_online = asposewordscloud.models.requests.AppendDocumentOnlineRequest(
document=document, document_list=document_list)
merged_docs = words_api.append_document_online(append_document_online)
split_document_online = asposewordscloud.models.requests.SplitDocumentOnlineRequest(
document=merged_docs, format='png', zip_output=True)
words_api.split_document_online(split_document_online)
使用 PyPi 存储库安装 Aspose.Words Cloud SDK for Python 。运行 pip install aspose-words-cloud 安装 SDK,然后通过 import asposewordscloud 导入包。作为替代方案,您可以从 GitHub 手动克隆 Aspose.Words Cloud SDK for Python 源代码并在您的项目中使用它。请按照这些 Instructions 快速获取必要的安全凭证并访问我们的 REST API。
请参阅 Repository Documentation 以查看详细信息。