🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
event.krishivgroups.in
/
vendor
/
intervention
/
image
/
src
/
Encoders
✏️
Editing: FilePathEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Encoders; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\EncodedImageInterface; class FilePathEncoder extends FileExtensionEncoder { /** * Create new encoder instance to encode to format of file extension in given path * * @return void */ public function __construct(protected ?string $path = null, mixed ...$options) { parent::__construct( is_null($path) ? $path : pathinfo($path, PATHINFO_EXTENSION), ...$options ); } /** * {@inheritdoc} * * @see EncoderInterface::encode() */ public function encode(ImageInterface $image): EncodedImageInterface { return $image->encode( $this->encoderByFileExtension( is_null($this->path) ? $image->origin()->fileExtension() : pathinfo($this->path, PATHINFO_EXTENSION) ) ); } }
💾 Save Changes
❌ Cancel