Create QR code in Ubuntu 16.04

11,895

Solution 1

I have tested two applications that worked well on Ubuntu 16.04 for creating QR codes:

  • If you want a simple command-line tool, I can recommend qrencode.

    It takes an output file name and optionally an input string as command-line arguments and produces a PNG file with the QR code. If no input string is given as argument, it reads from standard input, so you can either type into the terminal or pipe another command's output into it. There are also some more advanced options.

    Install it with sudo apt install qrencode.

    The basic usage is qrencode -o "output-file.png" "Your text here".
    For more information see man qrencode.


  • If you want a user-friendly GUI tool, you should try qtqr.

    It offers you a clean user interface that allows you to select an input data type like e.g. URL, email address, phone number, WiFi credentials or plain text. You can easily select the pixel size, margin and error correction level and save in the formats PNG and SVG. It also allows you to scan and decode QR codes from image files or a webcam.

    Install it with sudo apt install qtqr.

Now here's a screenshot showing how to create a QR code of my Ask Ubuntu profile URL with both tools (and using eog on the right to view the image created by qrencode, as it has no preview). Note that the created images are absolutely identical:

qtqr and qrencode/eog

Solution 2

Using Scribus

  1. Install and open Scribus
  2. In new Document dialog select Single Page New Document dialog with Single page selected
  3. From Insert menu at top choose Barcode Insert>Barcode
  4. Select QR Code from Type dropdown (You can expand this window if it is too small) Type>QR Code
  5. Type in the text you want to encode in the Code input box This page's QR code created
  6. Press OK and click to place a 'frame' which is Scribus-speak for an element on a page QR code placed
  7. Resize the 'frame' as you want it QR code resized
  8. Export the page as an image from File>Export>Save as Image... File>Export>Save as Image
  9. Crop the image in an image editor
Share:
11,895

Related videos on Youtube

mane shivam
Author by

mane shivam

Updated on September 18, 2022

Comments

  • mane shivam
    mane shivam almost 2 years

    How can I create QR codes in Ubuntu 16.04?

  • Lekensteyn
    Lekensteyn almost 7 years
    A variant of qrencode which can be quite useful: qrencode -o- "your text here" | display - (create QR code for "your text here" and display it with ImageMagick on screen, close by pressing Escape). To create a larger size, specify the -s<number> option as in: qrencode -s8 -o- "your text here" | display -. Create something from your clipboard: xsel -b | qrencode -o- | display -
  • Byte Commander
    Byte Commander almost 7 years
    That is surely nice if someone already uses Scribus and ideally can continue working with the QR code in that application, but for exclusively generating simple QR codes, I would probably not use it. It's a bit like recommending LibreOffice Writer for cropping images...
  • groundjet
    groundjet almost 7 years
    lol, true, personally I was a little stumped to find that functionality existed and I had Scribus lying around since forever, thought maybe someone else might be in the same boat.
  • Muhammad bin Yusrat
    Muhammad bin Yusrat over 6 years
    It's a bit like using a hammer instead of a screwdriver when you have to simply tighten a loose screw.
  • user502144
    user502144 about 5 years
    Do not use qtqr unless you want to wast a couple of hours trying to figure out, why generated QR code contains corrupted text