composer require intervention/image:dev-master
编码,代码如下:
// vim app/routes.php
1900 || $height > 900) app::abort(404); $fontsize = min(max(intval($width / 5), 12), 38)(www.111cn.net); $image = image::canvas($width, $height, '#cccccc') ->line('#b5b5b5', 0, 0, $width, $height) ->line('#b5b5b5', $width, 0, 0, $height) ->text($width . 'x' . $height, $width / 2, $height / 2, function ($font) use ($fontsize) { $font->file(public_path('font/georgia.ttf')); $font->align('center'); $font->valign('middle'); $font->size($fontsize); $font->color('#666666'); }); return response::make($image, 200, array('content-type' => 'image/png')); } } ?>
永久地址:
转载随意~请带上教程地址吧^^
