首页 > 开发 > PHP > 正文

Laravel4创建一个占位图片服务例子

2024-05-04 21:47:48
字体:
来源:转载
供稿:网友

下面我来给大家转一个关于Laravel4创建一个占位图片服务例子,使用Composer安装intervention/image库,代码如下:

composer require intervention/image:dev-master

编码,代码如下:

  1. // vim app/routes.php 
  2. <?php 
  3. Route::pattern('width''\d+'); 
  4. Route::pattern('height''\d+'); 
  5. Route::get('{width}x{height}''ImageHolderController@getIndex'); 
  6. // vim app/controllers/ImageHolderController.php 
  7. <?php 
  8.  
  9. class ImageHolderController extends BaseController { 
  10.     public function getIndex($width$height
  11.     { 
  12.         $width = intval($width); 
  13.         $height = intval($height); 
  14.         if ($width > 1900 || $height > 900) 
  15.             App::abort(404); 
  16.         $fontSize = min(max(intval($width / 5), 12), 38)(www.111cn.net); 
  17.         $image = Image::canvas($width$height'#CCCCCC'
  18.                 ->line('#B5B5B5', 0, 0, $width$height
  19.                 ->line('#B5B5B5'$width, 0, 0, $height
  20.                 ->text($width . 'x' . $height$width / 2, $height / 2, function ($fontuse ($fontSize) { 
  21.                     $font->file(public_path('font/Georgia.ttf')); 
  22.                     $font->align('center'); 
  23.                     $font->valign('middle'); 
  24.                     $font->size($fontSize); 
  25.                     $font->color('#666666'); 
  26.                 }); 
  27.         return Response::make($image, 200, array('Content-Type' => 'image/png')); 
  28.     } 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表