27 lines
529 B
PHP
27 lines
529 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Image;
|
|
|
|
class MediaController extends Controller
|
|
{
|
|
/**
|
|
* Create a generic image
|
|
*
|
|
* @param $width
|
|
* @param $height
|
|
* @param string $color
|
|
* @return mixed
|
|
*/
|
|
public function image($width,$height,$color='#ccc') {
|
|
$io = Image::canvas($width,$height,$color);
|
|
$io->text(sprintf('IMAGE-%sx%s',$width,$height),$width/2,$height/2,function($font) {
|
|
$font->file(5);
|
|
$font->align('center');
|
|
$font->valign('middle');
|
|
});
|
|
|
|
return $io->response();
|
|
}
|
|
} |