使用 Cells Cloud SDK for Python 将 PICTURE 对象导出为 JPG 格式文件
API
POST
https://api.aspose.cloud/v3.0/cells/export
将 PICTURE 对象从 Excel 文件导出为 JPG 文件是一项复杂的任务。将 PICTURE 导出为 JPG 格式转换由我们的 Python SDK 执行,同时保留源 PICTURE 电子表格的主要结构和逻辑内容。我们的 Python 库是在线将 PICTURE 对象导出为 JPG 格式文件的专业解决方案。该Cloud SDK为Python开发者提供了强大的功能和完美的JPG输出。
Python 中的代码示例使用 REST API 将电子表格中的图片导出为 JPG 格式
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/
import os
import base64
from asposecellscloud.apis.light_cells_api import LightCellsApi
cells_api = LightCellsApi(os.getenv('ProductClientId'),os.getenv('ProductClientSecret'))
files ={
"myDocument.xlsx" : "c:/myDocument.xlsx",
"Book1.xlsx" : "c:/Book1.xlsx"
}
result = cells_api.post_export(files ,"picture","jpg")
base64_string = result.files[0].file_content
base64_bytes = base64_string.encode("ascii")
sample_string_bytes = base64.b64decode(base64_bytes)
f = open(result.files[0].filename, 'w+b')
f.write(sample_string_bytes)
f.close()
如何使用Python云SDK将Excel图片中的对象导出为JPG
- 注册一个帐户仪表板获取免费API配额和授权详细信息
- 使用您的客户端 ID、客户端密钥、基本 URL 和 API 版本初始化 Cells API。
- 调用post_export方法获取结果流
系统要求
- Python 2.7 或更新版本
- Python 3.10 或更新版本