Файл: vendor/intervention/image/src/EncodedImage.php
Строк: 89
<?php
declare(strict_types=1);
namespace InterventionImage;
use InterventionImageExceptionsInvalidArgumentException;
use InterventionImageExceptionsStreamException;
use InterventionImageInterfacesDataUriInterface;
use InterventionImageInterfacesEncodedImageInterface;
use Throwable;
class EncodedImage extends File implements EncodedImageInterface
{
/**
* Create new instance.
*
* @param string|resource $data
* @throws InvalidArgumentException
* @throws StreamException
*/
public function __construct(
mixed $data,
protected string $mediaType = 'application/octet-stream',
) {
parent::__construct($data);
}
/**
* {@inheritdoc}
*
* @see EncodedImageInterface::mediaType()
*/
public function mediaType(): string
{
return $this->mediaType;
}
/**
* {@inheritdoc}
*
* @see EncodedImageInterface::mimetype()
*/
public function mimetype(): string
{
return $this->mediaType();
}
/**
* {@inheritdoc}
*
* @see EncodedImageInterface::toDataUri()
*
* @throws StreamException
*/
public function toDataUri(): DataUriInterface
{
return DataUri::create(
data: (string) $this,
mediaType: $this->mediaType(),
);
}
/**
* {@inheritdoc}
*
* @see EncodedImageInterface::toBase64()
*
* @throws StreamException
*/
public function toBase64(): string
{
return base64_encode((string) $this);
}
/**
* Show debug info for the current image.
*
* @return array<string, mixed>
*/
public function __debugInfo(): array
{
try {
$size = $this->size();
} catch (Throwable) {
$size = 0;
}
return [
'mediaType' => $this->mediaType(),
'size' => $size,
];
}
}