芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/sommatv/vendor/intervention/image/src/Intervention/Image/Response.php
image = $image; $this->format = $format ? $format : $image->mime; $this->quality = $quality ? $quality : 90; } /** * Builds response according to settings * * @return mixed */ public function make() { $this->image->encode($this->format, $this->quality); $data = $this->image->getEncoded(); $mime = finfo_buffer(finfo_open(FILEINFO_MIME_TYPE), $data); $length = strlen($data); if (function_exists('app') && is_a($app = app(), 'Illuminate\Foundation\Application')) { $response = \Illuminate\Support\Facades\Response::make($data); $response->header('Content-Type', $mime); $response->header('Content-Length', $length); } else { header('Content-Type: ' . $mime); header('Content-Length: ' . $length); $response = $data; } return $response; } }