Файловый менеджер - Редактировать - /home/easybachat/resumewing.com/vendor/intervention/image/src/Modifiers/CoverModifier.php
Ðазад
<?php declare(strict_types=1); namespace Intervention\Image\Modifiers; use Intervention\Image\Drivers\SpecializableModifier; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Geometry\Rectangle; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SizeInterface; class CoverModifier extends SpecializableModifier { /** * Create new modifier object * * @param int $width * @param int $height * @param string $position * @return void */ public function __construct( public int $width, public int $height, public string $position = 'center' ) { } /** * @throws RuntimeException */ public function getCropSize(ImageInterface $image): SizeInterface { $imagesize = $image->size(); $crop = new Rectangle($this->width, $this->height); return $crop->contain( $imagesize->width(), $imagesize->height() )->alignPivotTo($imagesize, $this->position); } /** * @throws RuntimeException */ public function getResizeSize(SizeInterface $size): SizeInterface { return $size->resize($this->width, $this->height); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 5.26 |
proxy
|
phpinfo
|
ÐаÑтройка