
HTML::QRCode - Generate HTML based QR Code

#!/usr/bin/env perl
use HTML::QRCode;
use CGI
my $q = CGI->new;
my $text = $q->param('text') || 'http://example.com/';
my $qrcode = HTML::QRCode->new->plot($text);
print $q->header;
print <<"HTML";
<html>
<head></head>
<body>
$qrcode
</body>
</html>
HTML

HTML::QRCode is HTML based QRCode generator, using Text::QRCode

$qrcode = HTML::QRCode->new(%params);
The new() constructor method instantiates a new Term::QRCode object.
$arrayref = $qrcode->plot("blah blah");
Return HTML based QR Code.

Hideo Kimura <hide <at> hide-k.net>
Yoshiki Kurihara
Yappo
nipotan

Text::QRCode, Imager::QRCode, Term::QRCode, HTML::QRCode, http://www.qrcode.com/, http://megaui.net/fukuchi/works/qrencode/index.en.html

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.