Код: Выделить всё
if (Input::file()) {
$image = Input::file('dataimage');
$filename = $image->getClientOriginalName();
$path = public_path('resimler/' . $filename);
Image::make($image->getRealPath())->resize(250, 172.5)->save($path);
$userprofile->image = $path;
$userprofile->save();
}
NotReadableException: источник изображения не читается
Подробнее здесь: https://stackoverflow.com/questions/448 ... -imagemake
Мобильная версия