首页 > 编程 > Perl > 正文

Perl生成纯HTML代码二维码实例

2020-10-31 15:16:33
字体:
来源:转载
供稿:网友

需要依次安装 qrencode、Text-QRCode、HTML-QRCode

#!/usr/bin/perl

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

生成的二维码是纯HTML代码,效果如:

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表