截流自动化的商城平台
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.

imageProcess.php 1.1KB

1234567891011121314151617181920212223242526272829303132
  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. try {
  14. $imageMogrTemplate = new Qcloud\Cos\ImageParamTemplate\ImageMogrTemplate();
  15. $imageMogrTemplate->thumbnailByScale(50);
  16. $picOperationsTemplate = new Qcloud\Cos\ImageParamTemplate\PicOperationsTransformation();
  17. $picOperationsTemplate->setIsPicInfo(1);
  18. $picOperationsTemplate->addRule($imageMogrTemplate, "resultobject");
  19. $result = $cosClient->ImageProcess(array(
  20. 'Bucket' => 'examplebucket-125000000', //格式:BucketName-APPID
  21. 'Key' => 'exampleobject',
  22. 'PicOperations' => $picOperationsTemplate->queryString(),
  23. ));
  24. // 请求成功
  25. print_r($result);
  26. } catch (\Exception $e) {
  27. // 请求失败
  28. echo($e);
  29. }