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; /** * Trait FocalGravityBuilderTrait * * @api */ trait FocalGravityBuilderTrait { /** * Detects the largest face in an image with the Advanced Facial Attribute Detection add-on and makes it the focus * of the transformation. * * For details, see the Advanced Facial Attribute Detection add-on documentation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity * * @see https://cloudinary.com/documentation/advanced_facial_attributes_detection_addon#face_detection_based_cropping */ public static function advancedFace(...$fallback) { return self::createWithFocalGravity(FocalGravity::ADVANCED_FACE, ...$fallback); } /** * Detects all faces in an image with the Advanced Facial Attribute Detection add-on and makes them the focus * of the transformation. * * For details, see the Advanced Facial Attribute Detection add-on documentation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity * * @see https://cloudinary.com/documentation/advanced_facial_attributes_detection_addon#face_detection_based_cropping */ public static function advancedFaces(...$fallback) { return self::createWithFocalGravity(FocalGravity::ADVANCED_FACES, ...$fallback); } /** * Detects all eyes in an image with the Advanced Facial Attribute Detection add-on and makes them the focus of * the transformation. * * For details, see the Advanced Facial Attribute Detection add-on documentation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity * * @see https://cloudinary.com/documentation/advanced_facial_attributes_detection_addon#eyes_detection_based_cropping */ public static function advancedEyes(...$fallback) { return self::createWithFocalGravity(FocalGravity::ADVANCED_EYES, ...$fallback); } /** * Detects human bodies in the asset and makes them the focus of the transformation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity */ public static function body(...$fallback) { return self::createWithFocalGravity(FocalGravity::BODY, ...$fallback); } /** * Detects the largest face in the asset and makes it the focus of the transformation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity */ public static function face(...$fallback) { return self::createWithFocalGravity(FocalGravity::FACE, ...$fallback); } /** * Detects all the faces in the asset and makes them the focus of the transformation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity */ public static function faces(...$fallback) { return self::createWithFocalGravity(FocalGravity::FACES, ...$fallback); } /** * Gives priority to areas of the asset that do not contain faces. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity */ public static function noFaces(...$fallback) { return self::createWithFocalGravity(FocalGravity::NO_FACES, ...$fallback); } /** * Uses custom coordinates that were previously specified (for example, as part of the image upload method) and * makes them the focus of the transformation. * * Defaults to 'center' gravity if no custom coordinates have been specified. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity */ public static function custom(...$fallback) { return self::createWithFocalGravity(FocalGravity::CUSTOM, ...$fallback); } /** * Crops the image while giving higher priority to custom coordinates (custom coordinates don't override the * automatic cropping). * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity */ public static function customNoOverride(...$fallback) { return self::createWithFocalGravity(FocalGravity::CUSTOM_NO_OVERRIDE, ...$fallback); } /** * Detects all text elements in an image using the OCR Text Detection and Extraction add-on and uses the detected * bounding box coordinates as the focus of the transformation. * * For details, see the OCR Text Detection and Extraction add-on documentation. * * @param mixed ...$fallback Fallback gravities. * * @return FocalGravity * * @see https://cloudinary.com/documentation/ocr_text_detection_and_extraction_addon */ public static function ocrText(...$fallback) { return self::createWithFocalGravity(FocalGravity::OCR_TEXT, ...$fallback); } /** * Alias for Gravity::ocrText() * * @param mixed ...$fallback * * @return FocalGravity * * @see FocalGravity::ocrText */ public static function ocr(...$fallback) { return self::ocrText(...$fallback); } /** * Creates a new instance of the FocalGravity class. * * @param string $gravity The main gravity. * @param array $fallback Fallback gravities. * * @return FocalGravity */ protected static function createWithFocalGravity($gravity, ...$fallback) { return new FocalGravity($gravity, ...$fallback); } }
[+]
..
[-] 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]