Mode); if (!empty($this->Width)) { $ops[] = 'w/' . $this->Width; } if (!empty($this->Height)) { $ops[] = 'h/' . $this->Height; } if (!empty($this->Quality)) { $ops[] = 'q/' . $this->Quality; } if (!empty($this->Format)) { $ops[] = 'format/' . $this->Format; } return $url . "?imageView/" . implode('/', $ops); } } // -------------------------------------------------------------------------------- // class Qiniu_Exif class Qiniu_Exif { public function MakeRequest($url) { return $url . "?exif"; } } // -------------------------------------------------------------------------------- // class Qiniu_ImageInfo class Qiniu_ImageInfo { public function MakeRequest($url) { return $url . "?imageInfo"; } }