* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Endroid\QrCode\Writer; use Endroid\QrCode\Exception\GenerateImageException; use Endroid\QrCode\Exception\InvalidLogoException; use Endroid\QrCode\Exception\MissingExtensionException; use Endroid\QrCode\QrCodeInterface; abstract class AbstractWriter implements WriterInterface { protected function getMimeType(string $path): string { if (!function_exists('mime_content_type')) { throw new MissingExtensionException('You need the ext-fileinfo extension to determine logo mime type'); } $mimeType = mime_content_type($path); if (!is_string($mimeType)) { throw new InvalidLogoException('Could not determine mime type'); } if (!preg_match('#^image/#', $mimeType)) { throw new GenerateImageException('Logo path is not an image'); } // Passing mime type image/svg results in invisible images if ('image/svg' === $mimeType) { return 'image/svg+xml'; } return $mimeType; } public function writeDataUri(QrCodeInterface $qrCode): string { $dataUri = 'data:'.$this->getContentType().';base64,'.base64_encode($this->writeString($qrCode)); return $dataUri; } public function writeFile(QrCodeInterface $qrCode, string $path): void { $string = $this->writeString($qrCode); file_put_contents($path, $string); } public static function supportsExtension(string $extension): bool { return in_array($extension, static::getSupportedExtensions()); } public static function getSupportedExtensions(): array { return []; } abstract public function getName(): string; }