In a Laravel application it is also possible to pass an uploaded file directly to the make method.
// resizing an uploaded file Image::make(Input::file('photo'))->resize(300, 200)->save('foo.jpg')