在 Python SDK 中壓縮 TIFF

使用 Python 減小 TIFF 的大小

使用 Python 中的 REST API,開發人員可以以編程方式壓縮 TIFF。使用給定的解決方案,輸出將是壓縮後的高質量文件。

看程式碼片段

在 Python 中壓縮 TIFF

使用我們強大的 Python API,開發人員可以壓縮 TIFF 以優化內容和輸出文件大小。通過清理未使用的數據和資源來減小文件大小。您還可以壓縮圖像以使輸出文件更小。

內容優化和壓縮的結果可以保存為原始 TIFF 或任何可用的保存格式 - DOCX、DOC、RTF、PDF、HTML 和許多其他格式。

減少 Python 中的 TIFF 文件大小

如前所述,我們的 Python SDK 允許您以編程方式減小 TIFF 的大小。現在您可以嘗試我們強大的功能,並通過以下示例評估如何在 Python 中壓縮 TIFF:

上傳要優化/壓縮的文件
運行代碼
從列表中選擇目標格式
import asposewordscloud

words_api = WordsApi(client_id = '####-####-####-####-####', client_secret = '##################')

request_document = open('Input.tiff', 'rb')
request_compress_options = asposewordscloud.CompressOptions(
   images_quality=75, images_reduce_size_factor=1)
compress_document_request = asposewordscloud.models.requests.CompressDocumentOnlineRequest(
   document=request_document, compress_options=request_compress_options)
compress_document = words_api.compress_document_online(compress_document_request)

convert_document = asposewordscloud.models.requests.ConvertDocumentRequest(
   document=list(insert_paragraph.document.values())[0], format='tiff')
words_api.convert_document(convert_document)
運行代碼
  
將代碼Python複製到剪貼板

如何在 Python 中壓縮 TIFF

  1. Aspose.Words Cloud for Python
  2. 將庫引用(導入庫)添加到您的 Python 項目
  3. 使用您的應用密鑰配置 API
  4. 加載要壓縮的源 TIFF
  5. 壓縮 TIFF,清理未使用的信息
  6. 選擇輸出文件格式
  7. 將 TIFF 壓縮的結果作為單獨的文件獲取

Python 庫以使用 TIFF 壓縮

使用 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 以查看詳細信息。

其他支持的文件格式

您可以對其他文件格式執行文檔壓縮:

5%

訂閱 Aspose 產品更新

獲取直接發送到您的郵箱的每月通訊和優惠。

© Aspose Pty Ltd 2001-2024. 版權所有。