fop.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. require_once("auth_digest.php");
  3. // --------------------------------------------------------------------------------
  4. // class Qiniu_ImageView
  5. class Qiniu_ImageView {
  6. public $Mode;
  7. public $Width;
  8. public $Height;
  9. public $Quality;
  10. public $Format;
  11. public function MakeRequest($url)
  12. {
  13. $ops = array($this->Mode);
  14. if (!empty($this->Width)) {
  15. $ops[] = 'w/' . $this->Width;
  16. }
  17. if (!empty($this->Height)) {
  18. $ops[] = 'h/' . $this->Height;
  19. }
  20. if (!empty($this->Quality)) {
  21. $ops[] = 'q/' . $this->Quality;
  22. }
  23. if (!empty($this->Format)) {
  24. $ops[] = 'format/' . $this->Format;
  25. }
  26. return $url . "?imageView/" . implode('/', $ops);
  27. }
  28. }
  29. // --------------------------------------------------------------------------------
  30. // class Qiniu_Exif
  31. class Qiniu_Exif {
  32. public function MakeRequest($url)
  33. {
  34. return $url . "?exif";
  35. }
  36. }
  37. // --------------------------------------------------------------------------------
  38. // class Qiniu_ImageInfo
  39. class Qiniu_ImageInfo {
  40. public function MakeRequest($url)
  41. {
  42. return $url . "?imageInfo";
  43. }
  44. }