標記影像檔案格式,縮寫為 TIFF 或 TIF,是一種用於儲存光柵圖形影像的電腦檔案格式,在圖形藝術家、出版業和攝影師中很流行。
有時,需要更新現有 TIFF 影像的參數。例如,您可能想要更新影像的位元深度、變更影像的壓縮或設定 TIFF 影像的水平/垂直解析度。 Aspose.Imaging Cloud 提供了一個 API 來執行這些操作。 cURL 範例將幫助您更好地理解 API 參數:
// First get JSON Web Token
// Please get your App Key and App SID from https://dashboard.aspose.cloud/#/apps. Kindly place App Key in "client_secret" and App SID in "client_id" argument.
curl -v "https://api.aspose.cloud/connect/token" \
-X POST \
-d "grant_type=client_credentials&client_id=xxxx&client_secret=xxxx" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json"
// cURL example to update parameters of existing TIFF image
curl -v "https://api.aspose.cloud/v3/imaging/tiff?compression=adobedeflate&resolutionUnit=inch&bitDepth=1&horizontalResolution=150&verticalResolution=150" \
-X POST \
-T SampleTiff.tiff \
-H "Content-Type: application/json" \
-H "Accept: multipart/form-data" \
-H "Authorization: Bearer <jwt token>" \
-o sample_out.tiff
由於它是 REST API,因此您可以使用任何程式語言來呼叫它。
TIFF 影像的其他可能的操作如下:
- 根據傳真參數更新現有 TIFF 影像的參數
- 將現有 TIFF 影像附加到另一個現有 TIFF 影像(i.e. merges TIFF images).
- 從現有 TIFF 影像中取得單獨的幀.
- 取得現有 TIFF 影像的單獨影格屬性.
Aspose 提供了 Cloud SDK 來方便呼叫這些 API。