-
-
Notifications
You must be signed in to change notification settings - Fork 726
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
85 changed files
with
2,425 additions
and
1,919 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Endroid\QrCode\Bacon; | ||
|
||
use BaconQrCode\Common\ErrorCorrectionLevel; | ||
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelHigh; | ||
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelInterface; | ||
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelLow; | ||
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelMedium; | ||
use Endroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelQuartile; | ||
|
||
final class ErrorCorrectionLevelConverter | ||
{ | ||
public static function convertToBaconErrorCorrectionLevel(ErrorCorrectionLevelInterface $errorCorrectionLevel): ErrorCorrectionLevel | ||
{ | ||
if ($errorCorrectionLevel instanceof ErrorCorrectionLevelLow) { | ||
return ErrorCorrectionLevel::valueOf('L'); | ||
} elseif ($errorCorrectionLevel instanceof ErrorCorrectionLevelMedium) { | ||
return ErrorCorrectionLevel::valueOf('M'); | ||
} elseif ($errorCorrectionLevel instanceof ErrorCorrectionLevelQuartile) { | ||
return ErrorCorrectionLevel::valueOf('Q'); | ||
} elseif ($errorCorrectionLevel instanceof ErrorCorrectionLevelHigh) { | ||
return ErrorCorrectionLevel::valueOf('H'); | ||
} | ||
|
||
throw new \Exception('Error correction level could not be converted'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Endroid\QrCode\Bacon; | ||
|
||
use BaconQrCode\Encoder\Encoder; | ||
use Endroid\QrCode\Matrix\Matrix; | ||
use Endroid\QrCode\Matrix\MatrixFactoryInterface; | ||
use Endroid\QrCode\Matrix\MatrixInterface; | ||
use Endroid\QrCode\QrCodeInterface; | ||
|
||
final class MatrixFactory implements MatrixFactoryInterface | ||
{ | ||
public function create(QrCodeInterface $qrCode): MatrixInterface | ||
{ | ||
$baconErrorCorrectionLevel = ErrorCorrectionLevelConverter::convertToBaconErrorCorrectionLevel($qrCode->getErrorCorrectionLevel()); | ||
$baconMatrix = Encoder::encode($qrCode->getData(), $baconErrorCorrectionLevel, strval($qrCode->getEncoding()))->getMatrix(); | ||
|
||
$blockValues = []; | ||
$columnCount = $baconMatrix->getWidth(); | ||
$rowCount = $baconMatrix->getHeight(); | ||
for ($rowIndex = 0; $rowIndex < $rowCount; ++$rowIndex) { | ||
$blockValues[$rowIndex] = []; | ||
for ($columnIndex = 0; $columnIndex < $columnCount; ++$columnIndex) { | ||
$blockValues[$rowIndex][$columnIndex] = $baconMatrix->get($columnIndex, $rowIndex); | ||
} | ||
} | ||
|
||
return new Matrix($blockValues, $qrCode->getSize(), $qrCode->getMargin(), $qrCode->getRoundBlockSizeMode()); | ||
} | ||
} |
Oops, something went wrong.