File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -939,6 +939,7 @@ function getObject() {
939
939
cos . getObject ( {
940
940
Bucket : config . Bucket , // Bucket 格式:test-1250000000
941
941
Region : config . Region ,
942
+ Key : '1mb.zip' ,
942
943
onProgress : function ( progressData ) {
943
944
logger . log ( JSON . stringify ( progressData ) ) ;
944
945
}
@@ -1394,12 +1395,13 @@ function request() {
1394
1395
cos . request ( {
1395
1396
Bucket : config . Bucket ,
1396
1397
Region : config . Region ,
1397
- Key : '1.txt' ,
1398
- Method : 'GET' ,
1399
- Action : 'acl' ,
1400
- Headers : { } ,
1401
- Query : { } ,
1402
- Body : '' ,
1398
+ Key : '1.png' ,
1399
+ Method : 'POST' ,
1400
+ Action : 'image_process' ,
1401
+ Headers : {
1402
+ // 通过 imageMogr2 接口使用图片缩放功能:指定图片宽度为 200,宽度等比压缩
1403
+ 'Pic-Operations' : '{"is_pic_info": 1, "rules": [{"fileid": "desample_photo.jpg", "rule": "imageMogr2/thumbnail/200x/"}]}'
1404
+ } ,
1403
1405
} , function ( err , data ) {
1404
1406
logger . log ( err || data ) ;
1405
1407
} ) ;
You can’t perform that action at this time.
0 commit comments