D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
www
/
wabot.delyntro.com
/
vendor
/
intervention
/
image
/
src
/
Modifiers
/
Filename :
PadModifier.php
back
Copy
<?php declare(strict_types=1); namespace Intervention\Image\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SizeInterface; class PadModifier extends ContainModifier { public function getCropSize(ImageInterface $image): SizeInterface { return $image->size() ->containMax( $this->width, $this->height ) ->alignPivotTo( $this->getResizeSize($image), $this->position ); } }