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 / Gd / Commands / FlipCommand.php

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

38 lines 930 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\Gd\Commands;
4
5 class FlipCommand extends ResizeCommand
6 {
7 /**
8 * Mirrors an image
9 *
10 * @param \Intervention\Image\Image $image
11 * @return boolean
12 */
13 public function execute($image)
14 {
15 $mode = $this->argument(0)->value('h');
16
17 $size = $image->getSize();
18 $dst = clone $size;
19
20 switch (strtolower($mode)) {
21 case 2:
22 case 'v':
23 case 'vert':
24 case 'vertical':
25 $size->pivot->y = $size->height - 1;
26 $size->height = $size->height * (-1);
27 break;
28
29 default:
30 $size->pivot->x = $size->width - 1;
31 $size->width = $size->width * (-1);
32 break;
33 }
34
35 return $this->modify($image, 0, 0, $size->pivot->x, $size->pivot->y, $dst->width, $dst->height, $size->width, $size->height);
36 }
37 }
38