Файл vendor/intervention/image/src/Interfaces/EncodedImageInterface.php Вес запакованого файла 236b (236 b) Вес распакованого файла: 535b (535 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Interfaces;
interface EncodedImageInterface extends FileInterface
{
/**
* Return Media (MIME) Type of encoded image
*
* @return string
*/
public function mediaType(): string;
/**
* Alias of self::mediaType()
*
* @return string
*/
public function mimetype(): string;
/**
* Transform encoded image data into an data uri string
*
* @return string
*/
public function toDataUri(): string;
}