當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ImageManagerStatic::cache方法代碼示例

本文整理匯總了PHP中Intervention\Image\ImageManagerStatic::cache方法的典型用法代碼示例。如果您正苦於以下問題:PHP ImageManagerStatic::cache方法的具體用法?PHP ImageManagerStatic::cache怎麽用?PHP ImageManagerStatic::cache使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Intervention\Image\ImageManagerStatic的用法示例。


在下文中一共展示了ImageManagerStatic::cache方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getTest2

 public function getTest2()
 {
     $this->layout = null;
     $img = Image::cache(function ($image) {
         $image->make('5721fc06d139a.jpg')->fit(300)->encode(null, 52);
         //            $image->make('5721fc06d139a.jpg')->resize(300)->encode(null, 52);
     }, 12000, true);
     //        $img = Image::make('5721fc06d139a.jpg')->resize(300, 300)->greyscale();
     //        $img = Image::make('5721fc06d139a.jpg')->crop(300, 300, 200, 600);
     //        $img = Image::make('5721fc06d139a.jpg')->fit(400, 200);
     //        echo $img->response(null, 10);
     //        echo $img->fit(100,100)->response(null, 52);
     echo $img->response();
     //        echo "<pre>";
     //        print_r($img);
     //        die;
 }
開發者ID:ArmSALArmy,項目名稱:Banants,代碼行數:17,代碼來源:Pages.php

示例2: thumbnails

 protected function thumbnails($template, $filename)
 {
     \Config::set('veer.image_templates.original', null);
     $image_path = public_path() . '/' . config('veer.images_path') . '/' . str_replace('..', '', $filename);
     if (!$this->checkTemplate($template) || !$this->checkFilename($image_path)) {
         return abort(404);
     }
     $params = config("veer.image_templates.{$template}");
     if (!is_null($params)) {
         //image manipulation based on callback
         $content = Image::cache(function ($image) use($image_path, $params) {
             $img = $image->make($image_path);
             return $img->{array_get($params, 0, 'fit')}(array_get($params, 1), array_get($params, 2), function ($constraint) {
                 $constraint->aspectRatio();
                 $constraint->upsize();
             })->encode(null, 100);
         }, config('veer.image_lifetime'));
     } else {
         $content = file_get_contents($image_path);
     }
     $mime = finfo_buffer(finfo_open(FILEINFO_MIME_TYPE), $content);
     return response($content, 200, array('Content-Type' => $mime, 'Cache-Control' => 'max-age=' . config('veer.image_lifetime') * 60 . ', public', 'Etag' => md5($content)));
 }
開發者ID:artemsk,項目名稱:veer-core,代碼行數:23,代碼來源:ImageController.php


注:本文中的Intervention\Image\ImageManagerStatic::cache方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。