Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/imagine/imagine/lib/Imagine/Filter/Basic/Rotate.php
Строк: 48
<?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 ImagineFilterBasic;

use 
ImagineImageImageInterface;
use 
ImagineImagePaletteColorColorInterface;
use 
ImagineFilterFilterInterface;

/**
 * A rotate filter
 */
class Rotate implements FilterInterface
{
    
/**
     * @var integer
     */
    
private $angle;

    
/**
     * @var ColorInterface
     */
    
private $background;

    
/**
     * Constructs Rotate filter with given angle and background color
     *
     * @param integer        $angle
     * @param ColorInterface $background
     */
    
public function __construct($angleColorInterface $background null)
    {
        
$this->angle      $angle;
        
$this->background $background;
    }

    
/**
     * {@inheritdoc}
     */
    
public function apply(ImageInterface $image)
    {
        return 
$image->rotate($this->angle$this->background);
    }
}
Онлайн: 1
Реклама