我有一个精确值的qr代码输出,但我不知道如何存储生成的图像。如何存储二维码图像?

时间:2017-10-04 11:28:52

标签: php

在代码中我有一个值字符串作为测试,我在扫描qr-code后得到一个输出。我想将qr-code图像存储在一个文件夹中。

include 'phpqrcode/qrlib.php';
$value = "test";
if($count > 0)
{                 
     QRcode::png('code data text', 'filename.png'); // creates file 
     $result = QRcode::png($values); // creates code image and outputs it 
                                                directly into browser
}

1 个答案:

答案 0 :(得分:0)

您有3个选项,

  1. 只需将coded data text存储在文件或数据库中
  2. 将qrcode二进制文件存储在数据库(QRcode::text($codeContents)
  3. 将qrcode存储到像@DarkBee QRcode::png($codeContents, $pngAbsoluteFilePath);
  4. 这样的文件中 祝你好运!