home
/
zktecojo
/
public_html
/
vendor
/
intervention
/
image
/
src
/
Intervention
/
Image
/
Commands
➕ New
📤 Upload
✎ Editing:
EllipseCommand.php
← Back
<?php namespace Intervention\Image\Commands; use \Closure; class EllipseCommand extends \Intervention\Image\Commands\AbstractCommand { /** * Draws ellipse on given image * * @param \Intervention\Image\Image $image * @return boolean */ public function execute($image) { $width = $this->argument(0)->type('numeric')->required()->value(); $height = $this->argument(1)->type('numeric')->required()->value(); $x = $this->argument(2)->type('numeric')->required()->value(); $y = $this->argument(3)->type('numeric')->required()->value(); $callback = $this->argument(4)->type('closure')->value(); $ellipse_classname = sprintf('\Intervention\Image\%s\Shapes\EllipseShape', $image->getDriver()->getDriverName()); $ellipse = new $ellipse_classname($width, $height); if ($callback instanceof Closure) { $callback($ellipse); } $ellipse->applyToImage($image, $x, $y); return true; } }
💾 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