dimanche 21 décembre 2014

Image Intervention Image on Laravel

So i got this error



Call to undefined function Intervention\Image\finfo_buffer()


I got this error when using Intervention image on my laravel so here is my code



if(Input::hasFile('imgchick'))
{
$img = Image::make('images/chickens/1419125359-chicken.jpg'); //got the error on this part
$file = ImageInput::file('imgchick');
$name = time().'-'.'chicken.jpg';
$file = $file->move(public_path() . '/images/chickens', $name);
$farm->img_loc=$name;


I already updated my php.ini and uncommented the some codes that was said need on some of my research, but its still not working. Please Help





Aucun commentaire:

Enregistrer un commentaire