Pic-Operations
request header and set the relevant parameters. You can also save the input images and processing results to COS. Currently, images within 20 MB can be processed.PUT /<ObjectKey> HTTP/1.1Host: <BucketName-APPID>.cos.<Region>.myqcloud.comDate: GMT DateAuthorization: Auth StringPic-Operations: <PicOperations>
Pic-Operations
is a JSON string. Its parameters are as follows:Parameter | Type | Required | Description |
is_pic_info | Int | No | Whether to return the input image information 0 (default): no 1 : yes |
rules | Array | No | Processing rules (up to 5 rules are supported). Each rule corresponds to one processing result. If this parameter is not specified, images will not be processed. |
rules
(a JSON array) are as follows:Parameter | Type | Required | Description |
bucket | String | No | Name of the destination bucket to store the results, formatted as BucketName-APPID . If this parameter is not specified, the results will be stored in the current bucket. |
fileid | String | Yes | The path and name of the output file The rules for setting this parameter are as follows (assume that the input file is stored in /p1/test1.jpg ):A value starting with a slash (/) indicates an absolute path. For example, if fileid is set to /p2/test2.jpg, the test2.jpg file will be stored in the p2 folder. A value not starting with a slash indicates a relative path. For example, if fileid is set to p2/test2.jpg, a folder named p2 is created in the p1 folder, and the test2.jpg file will be stored in the p2 folder. Note: Do not end the value with a slash. Otherwise, an empty filename will be generated. |
rule | String | Yes | Processing parameters. For more information, please see COS’s image processing API. To process an image using a specified style, the value must start with style/ with the style name followed. For example, if the style name is test , the value of rule should be style/test . |
Parameter | Type | Description |
UploadResult | Container | Original image information |
UploadResult
:Parameter | Type | Description |
OriginalInfo | Container | Input image information |
ProcessResults | Container | Image processing results |
OriginalInfo
:Parameter | Type | Description |
Key | String | Name of the input image |
Location | String | Location of the image |
ImageInfo | Container | Information of the original image |
ETag | String | ETag of the input image. If the output image overwrites the input image, the value of ETag will be that of the output image. |
ImageInfo
:Parameter | Type | Description |
Format | String | Format |
Width | Int | Image width |
Height | Int | Image height |
Quality | Int | Image quality |
Ave | String | Image average hue |
Orientation | Int | Image rotation angle |
ProcessResults
:Parameter | Type | Description |
Object | Container | Processing result of each image |
Object
:Parameter | Type | Description |
Key | String | Filename |
Location | String | Image path |
Format | String | Image format |
Width | Int | Image width |
Height | Int | Image height |
Size | Int | Image size |
Quality | Int | Image quality |
ETag | String | ETag of the output image |
PUT /filename.jpg HTTP/1.1Host: examplebucket-1250000000.cos.ap-chengdu.myqcloud.comDate: Wed, 28 Oct 2015 20:32:00 GMTAuthorization:XXXXXXXXXXXXPic-Operations: {"is_pic_info":1,"rules":[{"fileid":"test.jpg","rule":"imageView2/format/png"}]}Content-Length: 64[Object]
HTTP/1.1 200 OKContent-Type: application/xmlContent-Length: 645Date: Tue, 03 Apr 2018 09:06:16 GMTStatus: 200 OKx-cos-request-id: NWFjMzQ0MDZfOTBmYTUwXzZkZV8z****<UploadResult><OriginalInfo><Key>filename.jpg</Key><Location>examplebucket-1250000000.cos.ap-chengdu.myqcloud.com/filename.jpg</Location><ETag>"580cd6930444576523c25f86ce2af9b1fc2d5484"</ETag><ImageInfo><Format>JPEG</Format><Width>640</Width><Height>427</Height><Quality>100</Quality><Ave>0xa18454</Ave><Orientation>1</Orientation></ImageInfo></OriginalInfo><ProcessResults><Object><Key>test.jpg</Key><Location>examplebucket-1250000000.cos.ap-chengdu.myqcloud.com/test.jpg</Location><Format>png</Format><Width>640</Width><Height>427</Height><Size>463092</Size><Quality>100</Quality><ETag>"eaa4e3d8fd498bbc63be3b71c46b9c61f23e3f0c"</ETag></Object></ProcessResults></UploadResult>
Pic-Operations
request header when calling the Complete Multipart Upload API.POST /<ObjectKey>?uploadId=UploadId HTTP/1.1Host: <BucketName-APPID>.cos.<Region>.myqcloud.comDate: GMT DateContent-length: SizeAuthorization: Auth StringPic-Operations: <PicOperations>
POST /<ObjectKey>?image_process HTTP/1.1Host: <BucketName-APPID>.cos.<Region>.myqcloud.comDate: GMT DateContent-length: SizeAuthorization: Auth StringPic-Operations: <PicOperations>
Pic-Operations
is a JSON string. Its parameters are as follows:Parameter | Type | Required | Description |
is_pic_info | Int | No | Whether to return the input image information 0 (default): no 1 : yes |
rules | Array | No | Processing rules (up to 5 rules are supported). Each rule corresponds to one processing result. If this parameter is not specified, images will not be processed. |
rules
(a JSON array) are as follows:Parameter | Type | Required | Description |
bucket | String | No | Name of the destination bucket to store the results, formatted as BucketName-APPID . If this parameter is not specified, the results will be stored in the current bucket. |
fileid | String | Yes | The path and name of the output file The rules for setting this parameter are as follows (assume that the input file is stored in /p1/test1.jpg ):A value starting with a slash (/) indicates an absolute path. For example, if fileid is set to /p2/test2.jpg, the test2.jpg file will be stored in the p2 folder. A value not starting with a slash indicates a relative path. For example, if fileid is set to p2/test2.jpg, a folder named p2 is created in the p1 folder, and the test2.jpg file will be stored in the p2 folder. Note: Do not end the value with a slash. Otherwise, an empty filename will be generated. |
rule | String | Yes | Processing parameters. For more information, please see COS’s image processing API. To process an image using a specified style, the value must start with style/ with the style name followed. For example, if the style name is test , the value of rule should be style/test . |
Parameter | Type | Description |
UploadResult | Container | Input image information |
UploadResult
:Parameter | Type | Description |
OriginalInfo | Container | Input image information |
ProcessResults | Container | Image processing results |
OriginalInfo
:Parameter | Type | Description |
Key | String | Name of the input image |
Location | String | Location of the image |
ImageInfo | Container | Information of the original image |
ETag | String | ETag of the original image. If the output image overwrites the original image, the value of etag will be that of the output image |
ImageInfo
:Parameter | Type | Description |
Format | String | Format |
Width | Int | Image width |
Height | Int | Image height |
Quality | Int | Image quality |
Ave | String | Image average hue |
Orientation | Int | Image rotation angle |
ProcessResults
:Parameter | Type | Description |
Object | Container | Processing result of each image |
Object
:Parameter | Type | Description |
Key | String | Filename |
Location | String | Image path |
Format | String | Image format |
Width | Int | Image width |
Height | Int | Image height |
Size | Int | Image size |
Quality | Int | Image quality |
ETag | String | ETag of the output image |
POST /filename.jpg?image_process HTTP/1.1Host: examplebucket-1250000000.cos.ap-chengdu.myqcloud.comDate: Wed, 18 Jan 2017 16:17:03 GMTAuthorization: XXXXXXXXXXPic-Operations: {"is_pic_info":1,"rules":[{"fileid":"test.jpg","rule":"imageView2/format/png"}]}Content-Length: XX
HTTP/1.1 200 OKContent-Type: application/xmlContent-Length: 645Date: Tue, 03 Apr 2018 09:06:16 GMTStatus: 200 OKx-cos-request-id: NWFjMzQ0MDZfOTBmYTUwXzZkZV8z****<UploadResult><OriginalInfo><Key>filename.jpg</Key><Location>examplebucket-1250000000.cos.ap-chengdu.myqcloud.com/filename.jpg</Location><ETag>"eaa4e3d8fd498bbc63be3b71c46b9c61f23e3f0c"</ETag><ImageInfo><Format>JPEG</Format><Width>640</Width><Height>427</Height><Quality>100</Quality><Ave>0xa18454</Ave><Orientation>1</Orientation></ImageInfo></OriginalInfo><ProcessResults><Object><Key>test.jpg</Key><Location>examplebucket-1250000000.cos.ap-chengdu.myqcloud.com/test.jpg</Location><Format>png</Format><Width>640</Width><Height>427</Height><Size>463092</Size><Quality>100</Quality><ETag>"eaa4e3d8fd498bbc63be3b71c46b9c61f23e3f0c"</ETag></Object></ProcessResults></UploadResult>
Apakah halaman ini membantu?