PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Layer
<?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\ClassUtils; /** * Defines the 3D lookup table to apply to images and videos. * * **Learn more**: <a * href="https://cloudinary.com/documentation/image_transformations#applying_3d_luts_to_images" target="_blank"> * Applying 3D LUTs to images</a> | <a * href="https://cloudinary.com/documentation/video_manipulation_and_delivery#applying_3d_luts_to_video" * target="_blank"> Applying 3D LUTs to videos</a> * * @api */ class LutLayer extends AssetBasedSource implements AdjustmentInterface { /** * LutLayer constructor. * * @param $lut */ public function __construct($lut) { parent::__construct(ClassUtils::verifyInstance($lut, LutSourceQualifier::class)); } /** * Gets the transformation. * * @return Transformation */ public function getTransformation() { if (! isset($this->transformation)) { $this->transformation = new Transformation(); } return $this->transformation; } /** * Gets the layer qualifier. * * @return LutSourceQualifier * * @internal */ protected function getSourceQualifier() { if (! isset($this->qualifiers['source'])) { $this->qualifiers['source'] = new LutSourceQualifier(null); } return $this->qualifiers['source']; } }
[-] VideoSourceQualifier.php
[edit]
[-] LayerStackPosition.php
[edit]
[-] LayerQualifierFactory.php
[edit]
[-] Underlay.php
[edit]
[+]
..
[-] SubtitlesSource.php
[edit]
[-] LayerSourceTrait.php
[edit]
[-] AssetBasedSource.php
[edit]
[-] RemoteSourceValue.php
[edit]
[-] LutLayer.php
[edit]
[-] ImageOverlay.php
[edit]
[-] BaseSourceQualifier.php
[edit]
[-] Transition.php
[edit]
[-] TextSource.php
[edit]
[-] FetchImageSource.php
[edit]
[-] SourceValue.php
[edit]
[-] BlendMode.php
[edit]
[-] VideoSourceTrait.php
[edit]
[-] LayerQualifierTrait.php
[edit]
[-] Overlay.php
[edit]
[-] ImageSourceQualifier.php
[edit]
[-] TextSourceQualifier.php
[edit]
[-] VideoSource.php
[edit]
[-] ImageSourceTrait.php
[edit]
[-] MediaOverlay.php
[edit]
[-] SubtitlesSourceQualifier.php
[edit]
[-] LutSourceQualifier.php
[edit]
[-] Source.php
[edit]
[-] BaseSource.php
[edit]
[-] ImageSource.php
[edit]
[-] BaseSourceContainer.php
[edit]
[-] FetchSourceQualifier.php
[edit]
[-] VideoOverlay.php
[edit]