![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Coordinate/ |
<?php /* * This file is part of PHP-FFmpeg. * * (c) Alchemy <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FFMpeg\Coordinate; use FFMpeg\Exception\InvalidArgumentException; /** * 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 <= 0 || $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); } }