Вход Регистрация
Файл: vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/Dimension.php
Строк: 60
<?php

/*
 * This file is part of PHP-FFmpeg.
 *
 * (c) Alchemy <info@alchemy.fr>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace FFMpegCoordinate;

use 
FFMpegExceptionInvalidArgumentException;

/**
 * Dimension object, used for manipulating width and height couples.
 */
class Dimension
{
    private 
$width;
    private 
$height;

    
/**
     * @param int $width
     * @param int $height
     *
     * @throws InvalidArgumentException when one of the parameteres is invalid
     */
    
public function __construct($width$height)
    {
        if (
$width <= || $height <= 0) {
            throw new 
InvalidArgumentException('Width and height should be positive integer');
        }

        
$this->width = (int) $width;
        
$this->height = (int) $height;
    }

    
/**
     * Returns width.
     *
     * @return int
     */
    
public function getWidth()
    {
        return 
$this->width;
    }

    
/**
     * Returns height.
     *
     * @return int
     */
    
public function getHeight()
    {
        return 
$this->height;
    }

    
/**
     * Returns the ratio.
     *
     * @param bool $forceStandards Whether or not force the use of standards ratios;
     *
     * @return AspectRatio
     */
    
public function getRatio($forceStandards true)
    {
        return 
AspectRatio::create($this$forceStandards);
    }
}
Онлайн: 4
Реклама