uploadImage.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * Created by Aliyun ApsaraVideo VoD.
  4. * User: https://www.aliyun.com/product/vod
  5. * API document: https://help.aliyun.com/document_detail/55619.html
  6. */
  7. require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'voduploadsdk' . DIRECTORY_SEPARATOR . 'Autoloader.php';
  8. date_default_timezone_set('PRC');
  9. // 测试上传本地图片
  10. function testUploadLocalImage($accessKeyId, $accessKeySecret, $filePath)
  11. {
  12. try {
  13. $uploader = new AliyunVodUploader($accessKeyId, $accessKeySecret);
  14. $uploadImageRequest = new UploadImageRequest($filePath, 'testUploadLocalImage via PHP-SDK');
  15. $uploadImageRequest->setCateId(1000009458);
  16. $res = $uploader->uploadLocalImage($uploadImageRequest);
  17. print_r($res);
  18. } catch (Exception $e) {
  19. printf("testUploadLocalImage Failed, ErrorMessage: %s\n", $e->getMessage());
  20. }
  21. }
  22. // 测试上传网络图片
  23. function testUploadWebImage($accessKeyId, $accessKeySecret, $fileURL)
  24. {
  25. try {
  26. $uploader = new AliyunVodUploader($accessKeyId, $accessKeySecret);
  27. $uploadImageRequest = new UploadImageRequest($fileURL, 'testUploadWebImage via PHP-SDK');
  28. $uploadImageRequest->setCateId(1000009458);
  29. $res = $uploader->uploadWebImage($uploadImageRequest);
  30. print_r($res);
  31. } catch (Exception $e) {
  32. printf("testUploadWebImage Failed, ErrorMessage: %s\n", $e->getMessage());
  33. }
  34. }
  35. #### 执行测试代码 ####
  36. $accessKeyId = '<AccessKeyId>';
  37. $accessKeySecret = '<AccessKeySecret>';
  38. $localFilePath = '/opt/image/test-image.jpg';
  39. //testUploadLocalImage($accessKeyId, $accessKeySecret, $localFilePath);
  40. $webFileURL = 'http://vod-download.cn-shanghai.aliyuncs.com/retina/pic/20180208/496AE240-54AE-4CC8-8578-3EEC8F386E0B.gif';
  41. testUploadWebImage($accessKeyId, $accessKeySecret, $webFileURL);