PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Effect
/
Pixel
<?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; /** * Class Pixelate */ class Pixelate extends SquareSizeEffectAction { const REGION = PixelEffect::PIXELATE_REGION; const FACES = PixelEffect::PIXELATE_FACES; /** * Pixelate constructor. * * @param $squareSize * @param mixed ...$args */ public function __construct($squareSize, ...$args) { parent::__construct( new SquareSizeEffectQualifier(PixelEffect::PIXELATE, EffectRange::PIXEL_REGION, $squareSize), ...$args ); } use RegionEffectTrait; }
[-] RemoveBackground.php
[edit]
[-] Dither.php
[edit]
[+]
..
[-] CutOut.php
[edit]
[-] RegionEffectTrait.php
[edit]
[-] PixelEffect.php
[edit]
[-] PixelEffectTrait.php
[edit]
[-] RegionEffectAction.php
[edit]
[-] ImagePixelEffectTrait.php
[edit]
[-] Blur.php
[edit]
[-] GradientFade.php
[edit]
[-] Pixelate.php
[edit]
[-] MakeTransparent.php
[edit]
[-] GradientFadeQualifier.php
[edit]