PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Positioning
/
Gravity
<?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; /** * Defines the focal gravity for certain methods of cropping. * * **Learn more**: <a href=https://cloudinary.com/documentation/image_transformations#control_gravity * target="_blank"> * Image gravity</a> | * <a href=https://cloudinary.com/documentation/video_manipulation_and_delivery#gravity * target="_blank">Video gravity</a> * * @api */ abstract class Gravity { use CompassGravityBuilderTrait; use AutoGravityBuilderTrait; use FocalGravityBuilderTrait; use ObjectGravityBuilderTrait; /** * Creates a new instance of the ObjectGravity. * * @param mixed ...$objects The names of the objects. * * @return ObjectGravity */ public static function focusOn(...$objects) { return new ObjectGravity(...$objects); } }
[+]
..
[-] Gravity.php
[edit]
[-] CompassGravityBuilderTrait.php
[edit]
[+]
ObjectGravity
[-] FocalGravity.php
[edit]
[-] AutoGravity.php
[edit]
[-] LiquidRescaling.php
[edit]
[-] FocalGravityInterface.php
[edit]
[-] FocalGravityBuilderTrait.php
[edit]
[-] AutoGravityBuilderTrait.php
[edit]
[-] Compass.php
[edit]
[-] AutoGravityObject.php
[edit]
[-] CompassGravity.php
[edit]
[-] GravityQualifierTrait.php
[edit]
[-] GravityQualifier.php
[edit]