使用 Javascript/PHP 在服务器端将 QR 码保存为图像

问题描述 投票:0回答:1

我正在做一个小项目,我需要在里面生成二维码和徽标。我需要将生成的 QR 码保存为 PNG 或 JPEG 格式。如果我使用 svg 格式,下面的代码可以正常工作。但我想将文件保存为 PNG 或 JPEG 格式。我尝试将 svg 更改为 png,它保存了文件,但我无法打开它。当我尝试打开 PNG 文件时,它显示不支持的格式。

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>QR Code Styling</title>
  <script type="text/javascript" src="https://unpkg.com/[email protected]/lib/qr-code-styling.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>

<body>
  <div id="canvas"></div>
  <script type="text/javascript">

    const qrCode = new QRCodeStyling({
      width: 300,
      height: 300,
      type: "svg",
      data: "https://www.facebook.com/",
      image: "https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg",
      dotsOptions: {
        color: "#4267b2",
        type: "rounded"
      },
      backgroundOptions: {
        color: "#e9ebee",
      },
      imageOptions: {
        crossOrigin: "anonymous",
        margin: 20
      }
    });

    var svgBlob = qrCode.getRawData('jpeg');
    svgBlob.then(value => value.text().then(value => sendAjax(value)));

    function sendAjax(svgString) {
      $.ajax('saveqr.php', {
        'data': svgString, //canvas.innerHTML,
        'type': 'POST',
        'processData': false,
        'contentType': 'image/jpg'
      });
    }
    qrCode.append(document.getElementById("canvas"));
    // qrCode.download({ name: "qr", extension: "svg" });
  </script>
</body>

</html>

saveqr.php

<?php 
$svg = file_get_contents('php://input');
$myfile = fopen("testfile.jpeg", "w");
fwrite($myfile, $svg);

  
?>
javascript php svg png qr-code
1个回答
0
投票

您需要发送 blob,而不是

value.text()
:

    var svgBlob = qrCode.getRawData('jpeg');
    svgBlob.then(value => sendAjax(value));

这使得它的行为就像您的计算机上有该文件并想要上传它一样。

© www.soinside.com 2019 - 2024. All rights reserved.