PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / vendor / intervention / image / src / Intervention / Image / Commands / EllipseCommand.php

EllipseCommand.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at vendor/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php

37 lines 1002 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Intervention\Image\Commands;
4
5 use Closure;
6
7 class EllipseCommand extends AbstractCommand
8 {
9 /**
10 * Draws ellipse on given image
11 *
12 * @param \Intervention\Image\Image $image
13 * @return boolean
14 */
15 public function execute($image)
16 {
17 $width = $this->argument(0)->type('numeric')->required()->value();
18 $height = $this->argument(1)->type('numeric')->required()->value();
19 $x = $this->argument(2)->type('numeric')->required()->value();
20 $y = $this->argument(3)->type('numeric')->required()->value();
21 $callback = $this->argument(4)->type('closure')->value();
22
23 $ellipse_classname = sprintf('\Intervention\Image\%s\Shapes\EllipseShape',
24 $image->getDriver()->getDriverName());
25
26 $ellipse = new $ellipse_classname($width, $height);
27
28 if ($callback instanceof Closure) {
29 $callback($ellipse);
30 }
31
32 $ellipse->applyToImage($image, $x, $y);
33
34 return true;
35 }
36 }
37