欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-07-11 15:14:11
需要依次安装 qrencode、text-qrcode、html-qrcode #!/usr/bin/perl use html::qrcode; my $tex...

需要依次安装 qrencode、text-qrcode、html-qrcode

#!/usr/bin/perl

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

生成的二维码是纯html代码,效果如:Perl生成纯HTML代码二维码实例