tencent cloud

Cloud Infinite

Release Notes and Announcements
Release Notes
Announcements
Product Introduction
Product Overview
Product Strengths
Use Cases
Feature Overview
Regions and Domains
Specifications and Limits
Billing
Billing Overview
Billing Mode
Billable Items
Free Tier
Payment Overdue
Viewing Bill Details
FAQs
Getting Started
Registering and Logging In
Bind Bucket
Uploading and Processing File
Downloading and Deleting Images
Unbinding Buckets
Using CI via COS
Features
Image Processing
Media Processing
Content Moderation
AI Content Recognition
File Processing
Smart Voice
File processing
User Guide
Overview
Bucket Management
Smart Toolbox
Job and Workflow
Data Monitoring
Usage statistics
Use Cases
Copyright Protection Solutions
Image Processing Practices
Working with API Authorization Policies
Workflow Practices
API Documentation
API Overview
Structure
Common Request Headers
Common Response Headers
Activate Vast Service
Image Processing
AI-Based Content Recognition
Smart Audio
Media Processing
Content Moderation
Document Processing
File Processing
Job and Workflow
Cloud Virus Detection
Error Codes
Request Signature
SDK Documentation
SDK Overview
Android SDK
iOS SDK
COS Android SDK
C SDK
C++ SDK
.NET(C#) SDK
Go SDK
COS iOS SDK
Java SDK
JavaScript SDK
Node.js SDK
PHP SDK
Python SDK
Mini Program SDK
Personal Information Protection Policy for SDK
Security and Compliance
Permission ‍Management
FAQs
Basic Settings
Document Processing
Media Processing
Content Recognition
Smart Audio
Agreements
Service Level Agreement
Contact Us
Glossary

HEIF Compression

PDF
聚焦模式
字号
最后更新时间: 2025-07-16 17:43:25

Feature Overview

Image compression is the process of downsizing an image as much as possible without sacrificing quality so that it can be stored at a lower cost and accessed more quickly.
CI launched the HEIF compression feature to convert images into HEIF format that offers an ultra-high compression ratio. HEIF offers over 80% smaller file sizes at the same quality compared with JPG. iOS has adopted HEIF as the default image format, and Android P has native support for this format.

Restrictions

Format: Images in JPG, PNG, BMP, WebP, TPG, AVIF, or other formats can be converted into HEIF.
Size: The input image cannot be larger than 32 MB, with its width and height not exceeding 30,000 pixels, and the total number of pixels not exceeding 250 million. The width and height of the output image cannot exceed 9,999 pixels. For an input animated image, the total number of pixels (Width x Height x Number of frames) cannot exceed 250 million pixels.
Number of frames (for animated images): For GIF, the number of frames cannot exceed 300.

Preparation

To use HEIF compression, enable the image advanced compression feature for your bucket on the bucket’s configuration page. For more information, see Setting Image Advanced Compression.

Use Directions

CI uses the imageMogr2 API to provide the HEIF compression feature.
An image can be processed:
Upon download
Upon upload
In cloud
Note:
HEIF compression is billed at the image advanced compression ratio. For detailed pricing, see Image Processing Fees.

API Format

1. Processing upon download

download_url?imageMogr2/format/heif

2. Processing upon upload

PUT /<ObjectKey> HTTP/1.1
Host: <BucketName-APPID>.cos.<Region>.myqcloud.com
Date: GMT Date
Authorization: Auth String
Pic-Operations:
{
"is_pic_info": 1,
"rules": [{
"fileid": "exampleobject",
"rule": "imageMogr2/format/heif"
}]
}
Note:
Pic-Operations is a JSON string. Its parameters are as described in Persistent Image Processing.

3. Processing in-cloud data

POST /<ObjectKey>?image_process HTTP/1.1
Host: <BucketName-APPID>.cos.<Region>.myqcloud.com
Date: GMT Date
Content-length: Size
Authorization: Auth String
Pic-Operations:
{
"is_pic_info": 1,
"rules": [{
"fileid": "exampleobject",
"rule": "imageMogr2/format/heif"
}]
}
Note:
Authorization: Auth String (See Request Signature for details.)
When this feature is used by a sub-account, relevant permissions must be granted.

Parameters

Parameter
Description
download_url
URL of the input image, formatted as <BucketName-APPID>.cos.<Region>.myqcloud.com/<picture name>
Example: examplebucket-1250000000.cos.ap-shanghai.myqcloud.com/picture.jpeg
/format/<Format>
Compression format, which is heif

Examples

Note:
Processing upon download is used as an example here, which does not store the output image in a bucket. If you need to store the output image, use Processing upon upload or Processing in-cloud data instead.
Assume that the input image is a 1,335.2 KB image in PNG format, as shown below:

img


You can convert the image into HEIF format by using the following URL:
http://example-1258125638.cos.ap-shanghai.myqcloud.com/sample.png?imageMogr2/format/heif
Compression ratio comparison
Format
Image Size
PNG (input image)
1,335.2 KB
HEIF
52.87 KB (compression ratio: 96.0%)

帮助和支持

本页内容是否解决了您的问题?

填写满意度调查问卷,共创更好文档体验。

文档反馈