• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H01-Jul-2017-7563

inc/H01-Jul-2017-264192

lib/Image/PNG/H01-Jul-2017-530359

script/H01-Jul-2017-7248

t/H01-Jul-2017-8972

ChangesH A D01-Jul-2017798 4223

MANIFESTH A D01-Jul-2017487 2322

MANIFEST.SKIPH A D06-Feb-2017263 1817

META.jsonH A D01-Jul-20171.3 KiB5352

META.ymlH A D01-Jul-2017727 2726

Makefile.PLH A D03-May-20221.1 KiB5244

QRCode.xsH A D06-Feb-2017392 2415

READMEH A D01-Jul-20173.2 KiB10565

image-png-qrcode-perl.cH A D06-Feb-20173.6 KiB149115

ppport.hH A D06-Apr-2014183 KiB7,4533,120

qrencode.cH A D01-Jul-201726.3 KiB828705

qrencode.hH A D01-Jul-20171 KiB5338

qrpng.cH A D01-Jul-20174.2 KiB175140

qrpng.hH A D01-Jul-20171.3 KiB5739

README

1   ___                                    ____  _   _  ____
2  |_ _|_ __ ___   __ _  __ _  ___   _ _  |  _ \| \ | |/ ___|  _ _
3   | || '_ ` _ \ / _` |/ _` |/ _ \ (_|_) | |_) |  \| | |  _  (_|_)
4   | || | | | | | (_| | (_| |  __/  _ _  |  __/| |\  | |_| |  _ _
5  |___|_| |_| |_|\__,_|\__, |\___| (_|_) |_|   |_| \_|\____| (_|_)
6                       |___/
7    ___  ____   ____          _
8   / _ \|  _ \ / ___|___   __| | ___
9  | | | | |_) | |   / _ \ / _` |/ _ \
10  | |_| |  _ <| |__| (_) | (_| |  __/
11   \__\_\_| \_\\____\___/ \__,_|\___|
12
13
14
15This is the README for Image::PNG::QRCode version 0.09.
16
17Image::PNG::QRCode is a "module" for the Perl computer programming
18language, a library of computer code to install on a computer.  This
19document contains four sections:
20
211. About - what the module does
22
232. Documentation - how to learn more about the module
24
253. Installation - how to install this module on a computer
26
274. Help - what to do if you get stuck
28
29-----------------------------------------------------------------------------
30
311. ABOUT
32
33Image::PNG::QRCode - make a PNG image containing a QR code from text
34
35This module converts input text to a PNG image of a QR code containing
36the text. The PNG image can either be stored to a file or it can be a
37scalar.
38
39Image::PNG::Libpng requires "libpng" to be installed. "libpng" should
40already be installed on most Linux and Windows systems.
41
42-----------------------------------------------------------------------------
43
442. DOCUMENTATION
45
46You can read the documentation for the module online at the following
47websites:
48
49    * http://search.cpan.org/perldoc?Image::PNG::QRCode
50    * http://metacpan.org/release/Image-PNG-QRCode
51
52(These links go to the latest version of the module.)
53
54After installing the module, you can read the documentation on your
55computer using
56
57    perldoc Image::PNG::QRCode
58
59-----------------------------------------------------------------------------
60
613. INSTALLATION
62
63This module requires Perl version 5.6.1 or later.
64
65To install the module from CPAN, use
66
67    cpan Image::PNG::QRCode
68
69If you have the App::cpanminus installer, you may prefer
70
71    cpanm Image::PNG::QRCode
72
73To install the module from the source file, Image-PNG-QRCode-0.09.tar.gz,
74follow this sequence of commands:
75
76    tar xfz Image-PNG-QRCode-0.09.tar.gz
77    cd Image-PNG-QRCode-0.09
78    perl Makefile.PL
79    make
80    make install
81
82If you want to test the module before installing it, use "make test" after
83"make" and before "make install".
84
85-----------------------------------------------------------------------------
86
874. HELP
88
89To get help with the module, you can email the author, Ben Bullock, at
90<bkb@cpan.org>. If you think there is a problem in the module, you can
91report a bug at
92
93<https://github.com/benkasminbullock/image-png-qrcode/issues>,
94
95or if you want to alter the source code of Image::PNG::QRCode, try the
96public repository on github at
97
98<https://github.com/benkasminbullock/image-png-qrcode>.
99
100-----------------------------------------------------------------------------
101
102This README was written on Sat Jul  1 10:31:11 2017.
103
104-----------------------------------------------------------------------------
105