:octocat: move ANSI color escape code function to QRString::ansi8()

This commit is contained in:
smiley
2023-09-03 19:27:18 +02:00
parent a19b7f4fbd
commit fe602a9ab2
3 changed files with 55 additions and 50 deletions
+17 -26
View File
@@ -10,7 +10,7 @@
use chillerlan\QRCode\{QRCode, QROptions};
use chillerlan\QRCode\Data\QRMatrix;
use chillerlan\QRCode\Output\QROutputInterface;
use chillerlan\QRCode\Output\{QROutputInterface, QRString};
require_once __DIR__.'/../vendor/autoload.php';
@@ -21,30 +21,30 @@ $options->quietzoneSize = 2;
$options->outputType = QROutputInterface::STRING_TEXT;
$options->eol = "\n";
$options->textLineStart = str_repeat(' ', 6);
$options->textDark = ansi8('██', 253);
$options->textLight = ansi8('░░', 253);
$options->textDark = QRString::ansi8('██', 253);
$options->textLight = QRString::ansi8('░░', 253);
$options->moduleValues = [
// finder
QRMatrix::M_FINDER_DARK => ansi8('██', 124),
QRMatrix::M_FINDER => ansi8('░░', 124),
QRMatrix::M_FINDER_DOT => ansi8('██', 124),
QRMatrix::M_FINDER_DARK => QRString::ansi8('██', 124),
QRMatrix::M_FINDER => QRString::ansi8('░░', 124),
QRMatrix::M_FINDER_DOT => QRString::ansi8('██', 124),
// alignment
QRMatrix::M_ALIGNMENT_DARK => ansi8('██', 2),
QRMatrix::M_ALIGNMENT => ansi8('░░', 2),
QRMatrix::M_ALIGNMENT_DARK => QRString::ansi8('██', 2),
QRMatrix::M_ALIGNMENT => QRString::ansi8('░░', 2),
// timing
QRMatrix::M_TIMING_DARK => ansi8('██', 184),
QRMatrix::M_TIMING => ansi8('░░', 184),
QRMatrix::M_TIMING_DARK => QRString::ansi8('██', 184),
QRMatrix::M_TIMING => QRString::ansi8('░░', 184),
// format
QRMatrix::M_FORMAT_DARK => ansi8('██', 200),
QRMatrix::M_FORMAT => ansi8('░░', 200),
QRMatrix::M_FORMAT_DARK => QRString::ansi8('██', 200),
QRMatrix::M_FORMAT => QRString::ansi8('░░', 200),
// version
QRMatrix::M_VERSION_DARK => ansi8('██', 21),
QRMatrix::M_VERSION => ansi8('░░', 21),
QRMatrix::M_VERSION_DARK => QRString::ansi8('██', 21),
QRMatrix::M_VERSION => QRString::ansi8('░░', 21),
// dark module
QRMatrix::M_DARKMODULE => ansi8('██', 53),
QRMatrix::M_DARKMODULE => QRString::ansi8('██', 53),
// data
QRMatrix::M_DATA_DARK => ansi8('██', 166),
QRMatrix::M_DATA => ansi8('░░', 166),
QRMatrix::M_DATA_DARK => QRString::ansi8('██', 166),
QRMatrix::M_DATA => QRString::ansi8('░░', 166),
];
@@ -54,12 +54,3 @@ $out = (new QRCode($options))->render('https://www.youtube.com/watch?v=dQw4w9Wg
echo "\n\n\n$out\n\n\n";
exit;
// a little helper to a create proper ANSI 8-bit color escape sequence
function ansi8(string $str, int $color, bool $background = false):string{
$color = max(0, min($color, 255));
$background = ($background ? 48 : 38);
return sprintf("\x1b[%s;5;%sm%s\x1b[0m", $background, $color, $str);
}