태그가 지정된 이미지 파일 형식(Tagged Image File Format), 줄여서 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 이미지에 대한 다른 가능한 조작은 다음과 같습니다.

Aspose는 이러한 API를 쉽게 호출할 수 있도록 Cloud SDK를 제공합니다.