home
/
zktecojo
/
public_html
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
/
Imagick
/
Commands
➕ New
📤 Upload
✎ Editing:
ResetCommand.php
← Back
<?php namespace Intervention\Image\Imagick\Commands; class ResetCommand extends \Intervention\Image\Commands\AbstractCommand { /** * Resets given image to its backup state * * @param \Intervention\Image\Image $image * @return boolean */ public function execute($image) { $backupName = $this->argument(0)->value(); $backup = $image->getBackup($backupName); if ($backup instanceof \Imagick) { // destroy current core $image->getCore()->clear(); // clone backup $backup = clone $backup; // reset to new resource $image->setCore($backup); return true; } throw new \Intervention\Image\Exception\RuntimeException( "Backup not available. Call backup({$backupName}) before reset()." ); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel