How to generate a QR code in Ubuntu and LinuxMint

QR is short for ‘Quick Response’, a specific matrix barcode (otherwise known as two-dimensional code) typically readable by QR-readers and camera phones. Originated from Japan, it’s most likely the most popular form of 2D barcodes as of date.

Generation of QR codes in Ubuntu is very simple and straight forward, thanks to the existence of the software named ‘qrencode‘.


For installation,  You can install it via the following command or through the software center.

sudo apt-get install qrencode

After the software has been installed, we can generate QR codes  terminal.

Basic usage instructions are as follows:

 qrencode -o [Output.png] ‘[Link/Text/Information to be encoded’

For example, if we wanted to generate a QR code of the site ‘http://en.m.wikipedia.org/’, we’d type the following in our terminal.

 qrencode -o unixmen.png ‘http://unixmen.com

 That will give us this :

qr

We can adjust the size of our QR code with the –s option.

For example, if we wanted a 10×10 pixels QR code, we’d have to type the following instead.

 qrencode –o m_wikipedia_big.png –s 10 ‘http://en.m.wikipedia.org/

A 10×10 QR code of the site will be saved in our working directory.

Thanks again to Convexity for this post

{module user9-footer}