Image::reset
Reset current image to a previously saved state
2.9M Downloads / Month
Open Source MIT License
2.9M Downloads / Month
Open Source MIT License
public Intervention\Image\Image reset([string $name])
Resets all of the modifications to a state saved previously by backup under an optional name.
The name of the backup in memory. Default: default
Instance of Intervention\Image\Image
// create an image $img = Image::make('public/foo.jpg'); // backup status $img->backup(); // perform some modifications $img->resize(320, 240); $img->invert(); $img->save('public/small.jpg'); // reset image (return to backup state) $img->reset(); // perform other modifications $img->resize(640, 480); $img->invert(); $img->save('public/large.jpg');