PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Flag
<?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 LayerFlagTrait * * @api */ trait LayerFlagTrait { use ResizeModeTrait; /** * Trims pixels according to the transparency levels of a given overlay image. * * Wherever the overlay image is transparent, the original is shown, and wherever the overlay is opaque, the * resulting image is transparent. * * @return FlagQualifier */ public static function cutter() { return new FlagQualifier(self::CUTTER); } /** * Applies all chained transformations, until a transformation component that includes this flag, on the last added * overlay or underlay instead of applying on the containing image. * * @return FlagQualifier */ public static function layerApply() { return new FlagQualifier(self::LAYER_APPLY); } /** * Replaces the first image embedded in a PDF with the image stipulated as an overlay, * instead of adding it as another overlay. * * @return FlagQualifier */ public static function replaceImage() { return new FlagQualifier(self::REPLACE_IMAGE); } /** * Splices the video stipulated as an overlay on to the end of the container video instead of adding it as an * overlay. * * @return FlagQualifier */ public static function splice() { return new FlagQualifier(self::SPLICE); } /** * Prevents Cloudinary from extending the image canvas beyond the original dimensions when overlaying text and * other images. * * @return FlagQualifier */ public static function noOverflow() { return new FlagQualifier(self::NO_OVERFLOW); } /** * By default, text overlays are trimmed tightly to the text with no excess padding. This flag adds a small amount * of padding around the text overlay string. * * @return FlagQualifier */ public static function textNoTrim() { return new FlagQualifier(self::TEXT_NO_TRIM); } /** * Returns an error if the text overlay exceeds the image boundaries. * * @return FlagQualifier */ public static function textDisallowOverflow() { return new FlagQualifier(self::TEXT_DISALLOW_OVERFLOW); } /** * Tiles the added overlay over the entire image. * * @return FlagQualifier */ public static function tiled() { return new FlagQualifier(self::TILED); } }
[-] CommonTransformationFlagTrait.php
[edit]
[-] LayerFlagTrait.php
[edit]
[+]
..
[-] CommonFlagInterface.php
[edit]
[-] VideoTransformationFlagTrait.php
[edit]
[-] ImageFlagTrait.php
[edit]
[-] ImageFlagInterface.php
[edit]
[-] CommonFlag.php
[edit]
[-] FlagQualifier.php
[edit]
[-] LayerFlag.php
[edit]
[-] ImageFlag.php
[edit]
[-] VideoFlagInterface.php
[edit]
[-] LayerFlagInterface.php
[edit]
[-] Progressive.php
[edit]
[-] VideoFlagTrait.php
[edit]
[-] CommonFlagTrait.php
[edit]
[-] Flag.php
[edit]
[-] VideoFlag.php
[edit]
[-] ImageTransformationFlagTrait.php
[edit]
[-] FlagQualifierTrait.php
[edit]