Пример #1
0
 /**
  * Output the image object directly.
  *
  * @param  boolean $download
  * @return \Pop\Image\Gd
  */
 public function output($download = false)
 {
     // Determine if the force download argument has been passed.
     $attach = $download ? 'attachment; ' : null;
     $headers = array('Content-type' => $this->mime, 'Content-disposition' => $attach . 'filename=' . $this->basename);
     $response = new \Pop\Http\Response(200, $headers);
     if ($_SERVER['SERVER_PORT'] == 443) {
         $response->setSslHeaders();
     }
     if (null === $this->resource) {
         $this->createResource();
     }
     if (null === $this->output) {
         $this->output = $this->resource;
     }
     // Create the image resource and output it
     $response->sendHeaders();
     $this->createImage($this->output, null, $this->quality);
     // Destroy the image resource.
     $this->destroy();
     return $this;
 }
Пример #2
0
 /**
  * Output the image object directly.
  *
  * @param  boolean $download
  * @return \Pop\Image\Imagick
  */
 public function output($download = false)
 {
     // Determine if the force download argument has been passed.
     $attach = $download ? 'attachment; ' : null;
     $headers = array('Content-type' => $this->mime, 'Content-disposition' => $attach . 'filename=' . $this->basename);
     $response = new \Pop\Http\Response(200, $headers);
     if ($_SERVER['SERVER_PORT'] == 443) {
         $response->setSslHeaders();
     }
     if (null !== $this->compression) {
         $this->resource->setImageCompression($this->compression);
     }
     if (null !== $this->quality) {
         $this->resource->setImageCompressionQuality($this->quality);
     }
     $response->sendHeaders();
     echo $this->resource;
     return $this;
 }