PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Resize
/
Fill
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Transformation; use Cloudinary\Transformation\Argument\ColorValue; /** * Trait FillPadTrait * * @api */ trait FillPadTrait { /** * Tries to prevent a "bad crop" by first attempting to use the fill mode, but adding padding if it is determined * that more of the original image needs to be included in the final image. * * Especially useful if the aspect ratio of the delivered image is considerably different from the original's * aspect ratio. * * Only supported in conjunction with Automatic cropping (Gravity::auto()) * * @param int|float|string|null $width The required width of a transformed asset. * @param int|float|null $height The required height of a transformed asset. * @param FocalGravity|string $gravity Specifies which part of the original image to include. * @param string|ColorValue $background The background color of the image. * * @return FillPad * * @see Gravity::auto */ public static function fillPad($width = null, $height = null, $gravity = null, $background = null) { return new FillPad(CropMode::FILL_PAD, $width, $height, $gravity, $background); } }
[-] FillPad.php
[edit]
[+]
..
[-] FillTrait.php
[edit]
[-] FillPadTrait.php
[edit]
[-] Fill.php
[edit]