截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

getBlindWatermark.php 1.4KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. require dirname(__FILE__) . '/../vendor/autoload.php';
  3. $secretId = "COS_SECRETID"; //"云 API 密钥 SecretId";
  4. $secretKey = "COS_SECRETKEY"; //"云 API 密钥 SecretKey";
  5. $region = "ap-beijing"; //设置一个默认的存储桶地域
  6. $cosClient = new Qcloud\Cos\Client(
  7. array(
  8. 'region' => $region,
  9. 'schema' => 'https', //协议头部,默认为http
  10. 'credentials'=> array(
  11. 'secretId' => $secretId ,
  12. 'secretKey' => $secretKey)));
  13. $local_path = "/data/exampleobject";
  14. try {
  15. $blindWatermarkTemplate = new Qcloud\Cos\ImageParamTemplate\BlindWatermarkTemplate();
  16. $blindWatermarkTemplate->setPick();
  17. $blindWatermarkTemplate->setImage("http://examplebucket-125000000.cos.ap-beijing.myqcloud.com/shuiyin.jpeg");
  18. $blindWatermarkTemplate->setType(2);
  19. $picOperationsTemplate = new Qcloud\Cos\ImageParamTemplate\PicOperationsTransformation();
  20. $picOperationsTemplate->setIsPicInfo(1);
  21. $picOperationsTemplate->addRule($blindWatermarkTemplate, "resultobject");
  22. $result = $cosClient->putObject(array(
  23. 'Bucket' => 'examplebucket-125000000', //格式:BucketName-APPID
  24. 'Key' => 'exampleobject',
  25. 'Body' => fopen($local_path, 'rb'),
  26. 'PicOperations' => $picOperationsTemplate->queryString(),
  27. ));
  28. // 请求成功
  29. print_r($result);
  30. } catch (\Exception $e) {
  31. // 请求失败
  32. echo($e);
  33. }