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