2019-08-13 19:17:08 +00:00
|
|
|
<!--
|
2020-03-06 20:34:31 +00:00
|
|
|
_ _ _ ___ ____
|
|
|
|
| | (_| |__ _ __ ___ / _ \| _ \
|
|
|
|
| | | | '_ \| '__/ _ | | | | |_) |
|
|
|
|
| |___| | |_) | | | __| |_| | _ <
|
|
|
|
|_____|_|_.__/|_| \___|\__\_|_| \_\
|
2020-10-12 16:55:36 +00:00
|
|
|
A PHP Web interface for generating QR codes
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2021-10-19 15:07:51 +00:00
|
|
|
Source code: https://code.antopie.org/miraty/libreqr
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2020-10-12 16:55:36 +00:00
|
|
|
This file is part of LibreQR.
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2020-10-12 16:55:36 +00:00
|
|
|
LibreQR is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2020-10-12 16:55:36 +00:00
|
|
|
LibreQR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2020-10-12 16:55:36 +00:00
|
|
|
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2019-08-13 19:17:08 +00:00
|
|
|
-->
|
2020-03-06 20:34:31 +00:00
|
|
|
<?php
|
|
|
|
|
2021-11-03 18:35:20 +00:00
|
|
|
use CodeItNow\BarcodeBundle\Utils\QrCode;
|
|
|
|
|
|
|
|
require "inc.php";
|
|
|
|
|
2021-07-11 12:00:35 +00:00
|
|
|
$params = array(
|
|
|
|
"txt" => "",
|
|
|
|
"redondancy" => DEFAULT_REDONDANCY,
|
|
|
|
"margin" => DEFAULT_MARGIN,
|
|
|
|
"size" => DEFAULT_SIZE,
|
2021-11-01 17:08:42 +00:00
|
|
|
"bgColor" => DEFAULT_BGCOLOR,
|
|
|
|
"mainColor" => DEFAULT_MAINCOLOR,
|
2021-07-11 12:00:35 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if (
|
|
|
|
isset($_POST['txt'])
|
|
|
|
AND isset($_POST['redondancy'])
|
|
|
|
AND isset($_POST['margin'])
|
|
|
|
AND isset($_POST['size'])
|
|
|
|
AND isset($_POST['bgColor'])
|
|
|
|
AND isset($_POST['mainColor'])
|
|
|
|
) {
|
|
|
|
|
|
|
|
if (strlen($_POST['txt']) >= 1 AND strlen($_POST['txt']) <= 4096)
|
|
|
|
$params['txt'] = $_POST['txt'];
|
2020-03-06 20:34:31 +00:00
|
|
|
else
|
2021-07-11 12:00:35 +00:00
|
|
|
exit("Wrong value for txt");
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2021-11-01 17:08:42 +00:00
|
|
|
if ($_POST['redondancy'] === "low" OR $_POST['redondancy'] === "medium" OR $_POST['redondancy'] === "quartile" OR $_POST['redondancy'] === "high")
|
2021-07-11 12:00:35 +00:00
|
|
|
$params['redondancy'] = $_POST['redondancy'];
|
|
|
|
else
|
|
|
|
exit("Wrong value for redondancy");
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2021-11-01 17:08:42 +00:00
|
|
|
if (is_numeric($_POST['margin']) AND $_POST['margin'] >= 0 AND $_POST['margin'] <= 1024)
|
2021-07-11 12:00:35 +00:00
|
|
|
$params['margin'] = $_POST['margin'];
|
2021-11-05 23:33:15 +00:00
|
|
|
else if (empty($_POST['margin']))
|
|
|
|
$params['margin'] = NULL;
|
2021-07-11 12:00:35 +00:00
|
|
|
else
|
|
|
|
exit("Wrong value for margin");
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2021-11-05 23:33:15 +00:00
|
|
|
if (is_numeric($_POST['size']) AND $_POST['size'] >= 1 AND $_POST['size'] <= 4096)
|
2021-07-11 12:00:35 +00:00
|
|
|
$params['size'] = $_POST['size'];
|
2021-11-05 23:33:15 +00:00
|
|
|
else if (empty($_POST['size']))
|
|
|
|
$params['size'] = NULL;
|
2021-07-11 12:00:35 +00:00
|
|
|
else
|
|
|
|
exit("Wrong value for size");
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2021-07-11 12:00:35 +00:00
|
|
|
if (preg_match("/^#[abcdefABCDEF0-9]{6}$/", $_POST['bgColor']))
|
2021-11-01 17:08:42 +00:00
|
|
|
$params['bgColor'] = substr($_POST['bgColor'], -6);
|
2021-07-11 12:00:35 +00:00
|
|
|
else
|
|
|
|
exit("Wrong value for bgColor");
|
2020-03-06 20:34:31 +00:00
|
|
|
|
2021-07-11 12:00:35 +00:00
|
|
|
if (preg_match("/^#[abcdefABCDEF0-9]{6}$/", $_POST['mainColor']))
|
2021-11-01 17:08:42 +00:00
|
|
|
$params['mainColor'] = substr($_POST['mainColor'], -6);
|
2021-07-11 12:00:35 +00:00
|
|
|
else
|
|
|
|
exit("Wrong value for mainColor");
|
2020-03-06 20:34:31 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
2020-07-01 18:47:02 +00:00
|
|
|
<html lang="<?= $locale ?>">
|
2019-01-26 13:23:19 +00:00
|
|
|
<head>
|
2019-08-13 19:17:08 +00:00
|
|
|
<meta charset="UTF-8">
|
2020-07-01 18:47:02 +00:00
|
|
|
<title>LibreQR · <?= $loc['subtitle'] ?></title>
|
|
|
|
<meta name="description" content="<?= $loc['description'] ?>">
|
2019-02-11 18:26:31 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-03-28 21:44:06 +00:00
|
|
|
<link rel="manifest" href="manifest.php">
|
2021-07-11 12:00:35 +00:00
|
|
|
<link rel="search" type="application/opensearchdescription+xml" title="LibreQR" href="opensearch.php?redondancy=<?= $params['redondancy'] ?>&margin=<?= $params['margin'] ?>&size=<?= $params['size'] ?>&bgColor=<?= urlencode($params['bgColor']) ?>&mainColor=<?= urlencode($params['mainColor']) ?>">
|
2021-11-03 18:48:30 +00:00
|
|
|
<?php
|
2021-03-07 22:03:33 +00:00
|
|
|
require_once "less.php/lib/Less/Autoloader.php";
|
|
|
|
Less_Autoloader::register();
|
|
|
|
|
2021-11-03 18:48:30 +00:00
|
|
|
$options = array('cache_dir' => 'css/', 'compress' => true);
|
2021-10-19 15:07:51 +00:00
|
|
|
$cssFileName = Less_Cache::Get(array("style.less" => ""), $options, $colorScheme);
|
2020-03-06 20:34:31 +00:00
|
|
|
?>
|
2021-11-03 18:48:30 +00:00
|
|
|
<link type="text/css" rel="stylesheet" href="css/<?= $cssFileName ?>">
|
|
|
|
<?php
|
2020-07-01 18:47:02 +00:00
|
|
|
foreach($themeDimensionsIcons as $dimFav) { // Set all icons dimensions
|
2020-03-06 20:34:31 +00:00
|
|
|
echo ' <link rel="icon" type="image/png" href="themes/' . $theme . '/icons/' . $dimFav . '.png" sizes="' . $dimFav . 'x' . $dimFav . '">' . "\n";
|
2021-11-03 18:48:30 +00:00
|
|
|
}
|
|
|
|
?>
|
2019-01-26 13:23:19 +00:00
|
|
|
</head>
|
|
|
|
|
2020-03-06 20:34:31 +00:00
|
|
|
<body>
|
|
|
|
|
2020-07-01 18:47:02 +00:00
|
|
|
<main>
|
2019-01-26 13:23:19 +00:00
|
|
|
|
2019-03-17 15:03:43 +00:00
|
|
|
<header>
|
2020-10-25 17:02:57 +00:00
|
|
|
<a id="linkTitles" href="./">
|
|
|
|
<img alt="" id="logo" src="themes/<?php echo $theme; ?>/icons/128.png">
|
|
|
|
<div id="titles">
|
2020-03-06 20:34:31 +00:00
|
|
|
<h1>LibreQR</h1>
|
2020-07-01 18:47:02 +00:00
|
|
|
<h2><?= $loc['subtitle'] ?></h2>
|
2020-03-06 20:34:31 +00:00
|
|
|
</div>
|
|
|
|
</a>
|
2019-03-17 15:03:43 +00:00
|
|
|
</header>
|
2019-08-13 19:17:08 +00:00
|
|
|
|
2021-07-11 12:00:35 +00:00
|
|
|
<form method="post" action="./">
|
2019-01-26 13:23:19 +00:00
|
|
|
|
2020-03-06 20:34:31 +00:00
|
|
|
<div id="firstWrapper">
|
2019-08-13 19:17:08 +00:00
|
|
|
|
2021-07-11 19:48:56 +00:00
|
|
|
<div class="param" id="txtParam">
|
2021-11-05 23:33:15 +00:00
|
|
|
<details>
|
|
|
|
<summary><label for="txt"><?= $loc['label_content'] ?></label></summary>
|
|
|
|
<div class="helpText">
|
|
|
|
<?= $loc['help_content'] ?>
|
|
|
|
</div>
|
|
|
|
</details>
|
|
|
|
<textarea rows="8" required="" id="txt" placeholder="<?= $loc['placeholder'] ?>" name="txt"><?= htmlspecialchars($params['txt']) ?></textarea>
|
2019-03-17 15:03:43 +00:00
|
|
|
</div>
|
|
|
|
|
2021-05-03 13:18:50 +00:00
|
|
|
<div id="sideParams">
|
2020-03-06 20:34:31 +00:00
|
|
|
|
|
|
|
<div class="param">
|
2021-11-05 23:33:15 +00:00
|
|
|
<details>
|
|
|
|
<summary><label for="redondancy"><?= $loc['label_redondancy'] ?></label></summary>
|
|
|
|
<p class="helpText">
|
|
|
|
<?= $loc['help_redondancy'] ?>
|
|
|
|
</p>
|
|
|
|
</details>
|
2020-03-06 20:34:31 +00:00
|
|
|
<select id="redondancy" name="redondancy">
|
2021-11-01 17:08:42 +00:00
|
|
|
<option <?php if ($params['redondancy'] === "low") echo 'selected="" '; ?>value="low">L - 7%</option>
|
|
|
|
<option <?php if ($params['redondancy'] === "medium") echo 'selected="" '; ?>value="medium">M - 15%</option>
|
|
|
|
<option <?php if ($params['redondancy'] === "quartile") echo 'selected="" '; ?>value="quartile">Q - 25%</option>
|
|
|
|
<option <?php if ($params['redondancy'] === "high") echo 'selected="" '; ?>value="high">H - 30%</option>
|
2020-03-06 20:34:31 +00:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="param">
|
2021-11-05 23:33:15 +00:00
|
|
|
<details>
|
|
|
|
<summary><label for="margin"><?= $loc['label_margin'] ?></label></summary>
|
|
|
|
<p class="helpText">
|
|
|
|
<?= $loc['help_margin'] ?>
|
|
|
|
</p>
|
|
|
|
</details>
|
|
|
|
<input type="number" list="margins" id="margin" placeholder="<?= $loc['placeholder_pixels'] ?>" name="margin" min="0" max="1024" value="<?= htmlspecialchars($params['margin']) ?>">
|
|
|
|
<datalist id="margins">
|
|
|
|
<option value="16">
|
|
|
|
<option value="32">
|
|
|
|
<option value="64">
|
|
|
|
<option value="128">
|
|
|
|
</datalist>
|
2020-03-06 20:34:31 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="param">
|
2021-11-05 23:33:15 +00:00
|
|
|
<details>
|
|
|
|
<summary><label for="size"><?= $loc['label_size'] ?></label></summary>
|
|
|
|
<p class="helpText">
|
|
|
|
<?= $loc['help_size'] ?>
|
|
|
|
</p>
|
|
|
|
</details>
|
|
|
|
<input type="number" list="sizes" id="size" placeholder="<?= $loc['placeholder_pixels'] ?>" name="size" min="1" max="4096" value="<?= htmlspecialchars($params['size']) ?>">
|
|
|
|
<datalist id="sizes">
|
|
|
|
<option value="128">
|
|
|
|
<option value="256">
|
|
|
|
<option value="512">
|
|
|
|
<option value="1024">
|
|
|
|
</datalist>
|
2020-03-06 20:34:31 +00:00
|
|
|
</div>
|
|
|
|
|
2019-03-17 15:03:43 +00:00
|
|
|
</div>
|
|
|
|
|
2020-03-06 20:34:31 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="colors">
|
|
|
|
|
2019-03-17 15:03:43 +00:00
|
|
|
<div class="param">
|
2020-07-01 18:47:02 +00:00
|
|
|
<label for="bgColor"><?= $loc['label_bgColor'] ?></label>
|
2020-10-25 17:02:57 +00:00
|
|
|
<div class="inputColorContainer">
|
2021-11-01 17:08:42 +00:00
|
|
|
<input type="color" name="bgColor" id="bgColor" value="#<?= htmlspecialchars($params['bgColor']) ?>">
|
2020-03-06 20:34:31 +00:00
|
|
|
</div>
|
2019-03-17 15:03:43 +00:00
|
|
|
</div>
|
2019-01-26 13:23:19 +00:00
|
|
|
|
2020-03-06 20:34:31 +00:00
|
|
|
<div class="param">
|
2020-07-01 18:47:02 +00:00
|
|
|
<label for="mainColor"><?= $loc['label_mainColor'] ?></label>
|
2020-10-25 17:02:57 +00:00
|
|
|
<div class="inputColorContainer">
|
2021-11-01 17:08:42 +00:00
|
|
|
<input type="color" name="mainColor" id="mainColor" value="#<?= htmlspecialchars($params['mainColor']) ?>">
|
2020-03-06 20:34:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-03-17 15:03:43 +00:00
|
|
|
</div>
|
2019-08-13 19:17:08 +00:00
|
|
|
|
2020-07-01 18:47:02 +00:00
|
|
|
<div class="centered">
|
2020-10-25 17:02:57 +00:00
|
|
|
<input class="button" type="submit" value="<?= $loc['button_create'] ?>" />
|
2019-03-17 15:03:43 +00:00
|
|
|
</div>
|
2019-02-11 18:26:31 +00:00
|
|
|
|
2019-03-17 15:03:43 +00:00
|
|
|
</form>
|
2019-02-11 18:26:31 +00:00
|
|
|
|
2021-11-05 23:33:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if (!empty($params['txt'])) {
|
|
|
|
|
|
|
|
require "barcode-generator/Utils/QrCode.php";
|
|
|
|
$qrCode = new QrCode();
|
|
|
|
if (!is_null($params['margin']))
|
|
|
|
$qrCode->setPadding($params['margin']);
|
|
|
|
$qrCode
|
|
|
|
->setText($params['txt'])
|
|
|
|
->setSize($params['size'])
|
|
|
|
->setErrorCorrection($params['redondancy'])
|
|
|
|
->setForegroundColor(array(
|
|
|
|
'r' => hexdec(substr($params['mainColor'],0,2)),
|
|
|
|
'g' => hexdec(substr($params['mainColor'],2,2)),
|
|
|
|
'b' => hexdec(substr($params['mainColor'],4,2)),
|
|
|
|
))
|
|
|
|
->setBackgroundColor(array(
|
|
|
|
'r' => hexdec(substr($params['bgColor'],0,2)),
|
|
|
|
'g' => hexdec(substr($params['bgColor'],2,2)),
|
|
|
|
'b' => hexdec(substr($params['bgColor'],4,2)),
|
|
|
|
))
|
|
|
|
->setImageType(QrCode::IMAGE_TYPE_PNG);
|
|
|
|
$dataUri = $qrCode->getDataUri();
|
|
|
|
$qrSize = $qrCode->getSize() + 2 * $qrCode->getPadding();
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<section id="output">
|
2021-07-11 19:48:56 +00:00
|
|
|
<div class="centered" id="downloadQR">
|
2021-11-05 23:33:15 +00:00
|
|
|
<a href="<?= $dataUri ?>" class="button" download="<?= htmlspecialchars($params['txt']); ?>.png"><?= $loc['button_download'] ?></a>
|
2021-07-11 19:48:56 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="centered" id="showOnlyQR">
|
2021-11-05 23:33:15 +00:00
|
|
|
<a title="<?= $loc['title_showOnlyQR'] ?>" href="<?= $dataUri ?>"><img width="<?= $qrSize ?>" height="<?= $qrSize ?>" alt='<?= $loc['alt_QR_before'] ?><?= htmlspecialchars($params['txt']); ?><?= $loc['alt_QR_after'] ?>' id="qrCode" src="<?= $dataUri ?>"></a>
|
2021-07-11 19:48:56 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2019-02-11 18:26:31 +00:00
|
|
|
|
2021-11-05 23:33:15 +00:00
|
|
|
<?php } ?>
|
|
|
|
|
2020-10-25 17:02:57 +00:00
|
|
|
<footer>
|
2020-10-12 16:55:36 +00:00
|
|
|
|
2020-10-25 17:02:57 +00:00
|
|
|
<section id="info" class="metaText">
|
|
|
|
<?= $loc['metaText_qr'] ?>
|
|
|
|
</section>
|
2020-10-12 16:55:36 +00:00
|
|
|
|
2020-10-25 17:02:57 +00:00
|
|
|
<?php if ($customTextEnabled) { ?>
|
|
|
|
<section class="metaText">
|
|
|
|
<?= $customText ?>
|
|
|
|
</section>
|
2020-10-12 16:55:36 +00:00
|
|
|
<?php } ?>
|
2020-10-25 17:02:57 +00:00
|
|
|
|
|
|
|
<section class="metaText">
|
|
|
|
<?= $loc['metaText_legal'] ?>
|
|
|
|
</section>
|
|
|
|
|
2020-10-12 16:55:36 +00:00
|
|
|
</footer>
|
|
|
|
|
2020-07-01 18:47:02 +00:00
|
|
|
</main>
|
2019-02-11 18:26:31 +00:00
|
|
|
|
2019-03-17 15:03:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|