Server : nginx/1.20.1 System : Linux iZ2ze9ojcl78uluczwag69Z 4.18.0-240.22.1.el8_3.x86_64 #1 SMP Thu Apr 8 19:01:30 UTC 2021 x86_64 User : www ( 1000) PHP Version : 7.3.28 Disable Function : passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/0531yanglao.com/vendor/endroid/qr-code/src/Writer/ |
<?php declare(strict_types=1); /* * (c) Jeroen van den Enden <info@endroid.nl> * * 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 (false !== filter_var($path, FILTER_VALIDATE_URL)) { return $this->getMimeTypeFromUrl($path); } return $this->getMimeTypeFromPath($path); } private function getMimeTypeFromUrl(string $url): string { /** @var mixed $format */ $format = PHP_VERSION > 80000 ? true : 1; $headers = get_headers($url, $format); if (!is_array($headers) || !isset($headers['Content-Type'])) { throw new InvalidLogoException(sprintf('Content type could not be determined for logo URL "%s"', $url)); } return $headers['Content-Type']; } private function getMimeTypeFromPath(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; }