PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Resize
/
Parameter
<?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; /** * Trait ResizeModeTrait * * @api */ trait ResizeModeTrait { /** * Modifies percentage-based width & height qualifiers of overlays and underlays (e.g., 1.0) to be relative to the * overlaid region. Currently regions are only defined when using gravity 'face', 'faces' or 'custom'. * * @return FlagQualifier */ public static function regionRelative() { return new FlagQualifier(Flag::REGION_RELATIVE); } /** * Modifies percentage-based width & height qualifiers of overlays and underlays (e.g., 1.0) to be relative to the * containing image instead of the added layer. * * @return FlagQualifier */ public static function relative() { return new FlagQualifier(Flag::RELATIVE); } }
[-] CropModeTrait.php
[edit]
[+]
..
[-] ResizeQualifierTrait.php
[edit]
[-] ZoomTrait.php
[edit]
[-] ResizeMode.php
[edit]
[-] Zoom.php
[edit]
[-] CropMode.php
[edit]
[-] ResizeModeTrait.php
[edit]