私はLaravel 5を使用しており、介入を統合しています.2つの異なるサイズで画像のサイズを変更しようとしていますが、保存機能は画像を1つのサイズでのみ保存していますここに私のコントローラのコードがあります
$image = Input::file('image');// Getting image
$destinationPath = 'uploads'; // upload path
$extension = $image->getClientOriginalExtension(); //Getting Image Extension
$fileName = rand(11111,99999).'.'.$extension; // renaming image
$img = Image::make($image);
$medium_image = $img->resize(25,25);
$large_image = $img->resize(50,50);
$image->move($destinationPath, $fileName);
$medium_image->save('uploads/medium'.$fileName);
$large_image->save('uploads/large'.$fileName); // uploading file to given path
介入は、より大きな寸法で画像のサイズを変更するだけで、同じ寸法で2番目の画像のサイズを変更しています。