用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

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

时间:2015-01-23  来源:西部数据  作者:西部数据

下面我来给大家转一个关于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.     } 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门