perl生成纯html二维码(qrcode二维码)实例

发布时间:2020-07-06编辑:脚本学堂
perl生成二维码,perl生成纯html代码二维码的例子,有需要的朋友参考下。

例子,使用perl生成纯html二维码,需要依次安装 qrencode、text-qrcode、html-qrcode。
 

复制代码 代码示例:

#!/usr/bin/perl

use html::qrcode;
my $text = 'http://jb200.com/';
my $qrcode = html::qrcode->new->plot($text);
print <<"html";
<html>
  <head></head>
  <body>
  $qrcode
  </body>
</html>
html
 

以上生成的二维码是纯html代码。