endroid4 = method_exists(QrCode::class, 'create'); $this->bgcolor = $this->handleColor($bgcolor); $this->color = $this->handleColor($color); $this->margin = $margin; $this->errorcorrectionlevel = $this->handleErrorCorrectionLevel($errorcorrectionlevel); } public function getMimeType(): string { return 'image/png'; } public function getQRCodeImage(string $qrtext, int $size): string { if (!$this->endroid4) { return $this->qrCodeInstance($qrtext, $size)->writeString(); } $writer = new PngWriter(); return $writer->write($this->qrCodeInstance($qrtext, $size))->getString(); } protected function qrCodeInstance(string $qrtext, int $size): QrCode { $qrCode = new QrCode($qrtext); $qrCode->setSize($size); $qrCode->setErrorCorrectionLevel($this->errorcorrectionlevel); $qrCode->setMargin($this->margin); $qrCode->setBackgroundColor($this->bgcolor); $qrCode->setForegroundColor($this->color); return $qrCode; } private function handleColor(string $color): Color { $split = str_split($color, 2); $r = hexdec($split[0]); $g = hexdec($split[1]); $b = hexdec($split[2]); return $this->endroid4 ? new Color($r, $g, $b, 0) : array('r' => $r, 'g' => $g, 'b' => $b, 'a' => 0); } private function handleErrorCorrectionLevel(string $level): ErrorCorrectionLevelInterface { switch ($level) { case 'L': return $this->endroid4 ? new ErrorCorrectionLevelLow() : ErrorCorrectionLevel::LOW(); case 'M': return $this->endroid4 ? new ErrorCorrectionLevelMedium() : ErrorCorrectionLevel::MEDIUM(); case 'Q': return $this->endroid4 ? new ErrorCorrectionLevelQuartile() : ErrorCorrectionLevel::QUARTILE(); case 'H': default: return $this->endroid4 ? new ErrorCorrectionLevelHigh() : ErrorCorrectionLevel::HIGH(); } } }