提交的内容
This commit is contained in:
16
vendor/qcloud/cos-sdk-v5/sample/getBlindWatermark.php
vendored
Executable file → Normal file
16
vendor/qcloud/cos-sdk-v5/sample/getBlindWatermark.php
vendored
Executable file → Normal file
@ -8,7 +8,7 @@ $region = "ap-beijing"; //替换为用户的 region,已创建桶归属的regio
|
||||
$cosClient = new Qcloud\Cos\Client(
|
||||
array(
|
||||
'region' => $region,
|
||||
'schema' => 'https', //协议头部,默认为http
|
||||
'scheme' => 'https', //协议头部,默认为http
|
||||
'credentials'=> array(
|
||||
'secretId' => $secretId,
|
||||
'secretKey' => $secretKey)));
|
||||
@ -18,9 +18,12 @@ try {
|
||||
$blindWatermarkTemplate->setPick();
|
||||
$blindWatermarkTemplate->setImage("http://examplebucket-125000000.cos.ap-beijing.myqcloud.com/shuiyin.jpeg");
|
||||
$blindWatermarkTemplate->setType(2);
|
||||
$blindWatermarkTemplate->setVersion("2.0");
|
||||
$picOperationsTemplate = new Qcloud\Cos\ImageParamTemplate\PicOperationsTransformation();
|
||||
$picOperationsTemplate->setIsPicInfo(1);
|
||||
$picOperationsTemplate->addRule($blindWatermarkTemplate, "resultobject");
|
||||
|
||||
// -------------------- 1. 上传时处理 -------------------- //
|
||||
$result = $cosClient->putObject(array(
|
||||
'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
|
||||
'Key' => 'exampleobject',
|
||||
@ -29,6 +32,17 @@ try {
|
||||
));
|
||||
// 请求成功
|
||||
print_r($result);
|
||||
// -------------------- 1. 上传时处理 -------------------- //
|
||||
|
||||
// -------------------- 2. 云上数据处理 -------------------- //
|
||||
$result = $cosClient->ImageProcess(array(
|
||||
'Bucket' => 'examplebucket-1250000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
|
||||
'Key' => 'exampleobject',
|
||||
'PicOperations' => $picOperationsTemplate->queryString(),
|
||||
));
|
||||
// 请求成功
|
||||
print_r($result);
|
||||
// -------------------- 2. 云上数据处理 -------------------- //
|
||||
} catch (\Exception $e) {
|
||||
// 请求失败
|
||||
echo($e);
|
||||
|
||||
Reference in New Issue
Block a user