| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/dansnotreville-fr/nice/libraries/CBLib/Imagine/Filter/Basic/ |
Upload File : |
<?php
/*
* This file is part of the Imagine package.
*
* (c) Bulat Shakirzyanov <mallluhuct@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Imagine\Filter\Basic;
use Imagine\Filter\FilterInterface;
use Imagine\Image\ImageInterface;
use Imagine\Image\Palette\Color\ColorInterface;
/**
* Rotates an image automatically based on exif information.
*
* Your attention please: This filter requires the use of the
* ExifMetadataReader to work.
*
* @see https://imagine.readthedocs.org/en/latest/usage/metadata.html
*/
class Autorotate implements FilterInterface
{
/**
* Image transformation: flip vertically.
*
* @var string
*/
const FLIP_VERTICALLY = 'V';
/**
* Image transformation: flip horizontally.
*
* @var string
*/
const FLIP_HORIZONTALLY = 'H';
/**
* @var string|array|\Imagine\Image\Palette\Color\ColorInterface
*/
private $color;
/**
* @param string|array|\Imagine\Image\Palette\Color\ColorInterface $color A color
*/
public function __construct($color = '000000')
{
$this->color = $color;
}
/**
* {@inheritdoc}
*
* @see \Imagine\Filter\FilterInterface::apply()
*/
public function apply(ImageInterface $image)
{
foreach ($this->getTransformations($image) as $transformation) {
if ($transformation === self::FLIP_HORIZONTALLY) {
$image->flipHorizontally();
} elseif ($transformation === self::FLIP_VERTICALLY) {
$image->flipVertically();
} elseif (is_int($transformation)) {
$image->rotate($transformation, $this->getColor($image));
}
}
return $image;
}
/**
* Get the transformations.
*
* @param \Imagine\Image\ImageInterface $image
*
* @return array an array containing Autorotate::FLIP_VERTICALLY, Autorotate::FLIP_HORIZONTALLY, rotation degrees
*/
public function getTransformations(ImageInterface $image)
{
$transformations = array();
$metadata = $image->metadata();
switch (isset($metadata['ifd0.Orientation']) ? $metadata['ifd0.Orientation'] : null) {
case 1: // top-left
break;
case 2: // top-right
$transformations[] = self::FLIP_HORIZONTALLY;
break;
case 3: // bottom-right
$transformations[] = 180;
break;
case 4: // bottom-left
$transformations[] = self::FLIP_HORIZONTALLY;
$transformations[] = 180;
break;
case 5: // left-top
$transformations[] = self::FLIP_HORIZONTALLY;
$transformations[] = -90;
break;
case 6: // right-top
$transformations[] = 90;
break;
case 7: // right-bottom
$transformations[] = self::FLIP_HORIZONTALLY;
$transformations[] = 90;
break;
case 8: // left-bottom
$transformations[] = -90;
break;
default: // Invalid orientation
break;
}
return $transformations;
}
/**
* @param \Imagine\Image\ImageInterface $image
*
* @return \Imagine\Image\Palette\Color\ColorInterface
*/
private function getColor(ImageInterface $image)
{
if ($this->color instanceof ColorInterface) {
return $this->color;
}
return $image->palette()->color($this->color);
}
}