Image::reset

Reset current image to a previously saved state

2.8M 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.

Parameters

name (optional)

The name of the backup in memory. Default: default

Return Values

Instance of Intervention\Image\Image

Examples

// 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');

See also

Edit