Image::backup
Save a backup of the current image state
2.9M Downloads / Month
Open Source MIT License
2.9M Downloads / Month
Open Source MIT License
public Intervention\Image\Image backup([string $name])
Backups current image state as fallback for reset method under an optional name. Overwrites older state on every call, unless a different name is passed.
The name of the backup in memory. Default: default
Instance of Intervention\Image\Image
// create empty canvas with black background
$img = Image::canvas(120, 90, '#000000');
// fill image with color
$img->fill('#b53717');
// backup image with colored background
$img->backup();
// fill image with tiled image
$img->fill('tile.png');
// return to colored background
$img->reset();