|
NAMEHTML::QRCode - Generate HTML based QR CodeSYNOPSIS#!/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 DESCRIPTIONHTML::QRCode is HTML based QRCode generator, using Text::QRCodeMETHODS
AUTHORHideo Kimura <hide <at> hide-k.net>Yoshiki Kurihara Yappo nipotan SEE ALSO"Text::QRCode", "Imager::QRCode", "Term::QRCode", "HTML::QRCode", "http://www.qrcode.com/", "http://megaui.net/fukuchi/works/qrencode/index.en.html"LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |