freebsd-ports/graphics/p5-Image-PNG-QRCode/pkg-descr
Dan Langille 065cb3258f New port: graphics/p5-Image-PNG-QRCode
make a PNG image containing a QR code from text

This module converts input text to a PNG image of a QR code containing the
text. The PNG image can either be stored to a file or it can be a scalar.

Image::PNG::Libpng requires "libpng" to be installed. "libpng" should
already be installed on most Linux and Windows systems.
2018-07-27 17:47:35 +00:00

17 lines
567 B
Text

This module converts input text to a PNG image of a QR code containing the
text. The PNG image can either be stored to a file or it can be a scalar.
Image::PNG::Libpng requires "libpng" to be installed. "libpng" should
already be installed on most Linux and Windows systems.
This example makes a data URL QR code:
use Image::PNG::QRCode 'qrpng';
use URI;
my $data = 'abcdefghijklmnopqrstuvwxyz';
my $u = URI->new ('data:');
$u->media_type ('image/png');
$u->data (qrpng (text => $data));
print "<img src='$u'>\n";
WWW: https://metacpan.org/pod/Image::PNG::QRCode