All Projects → nayuki → Qr Code Generator

nayuki / Qr Code Generator

High-quality QR Code generator library in Java, TypeScript/JavaScript, Python, Rust, C++, C.

Programming Languages

python
139335 projects - #7 most used programming language
java
68154 projects - #9 most used programming language
c
50402 projects - #5 most used programming language
typescript
32286 projects
rust
11053 projects
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to Qr Code Generator

nova-qrcode-field
A Laravel Nova field to generate QR Code
Stars: ✭ 28 (-98.82%)
Mutual labels:  qr-code, qr-generator, qr
vk-qr
VK QR Code generator library
Stars: ✭ 43 (-98.18%)
Mutual labels:  qr-code, qr-generator, qr
wifiqr
Create a QR code with your Wi-Fi login details
Stars: ✭ 207 (-91.24%)
Mutual labels:  qr-generator, qr
quagga2-reader-qr
Quagga2 sample external reader for QR codes
Stars: ✭ 20 (-99.15%)
Mutual labels:  qr-code, qr
React Native Vision Camera
📸 The Camera library that sees the vision.
Stars: ✭ 443 (-81.25%)
Mutual labels:  qr-code, library
paper-store
Cold store small files on paper as QR codes -- PGP keys, Bitcoin keys, Tox keys or any other small files in general.
Stars: ✭ 28 (-98.82%)
Mutual labels:  qr-code, qr
Qr Code
Web Component for generating QR codes
Stars: ✭ 425 (-82.01%)
Mutual labels:  qr-code, qr
Awesome Qr.js
An awesome QR code generator written in JavaScript.
Stars: ✭ 1,247 (-47.23%)
Mutual labels:  qr-code, qr
Qr Ascii
A small library to generate QR codes with ascii
Stars: ✭ 63 (-97.33%)
Mutual labels:  qr-code, qr
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (-58.44%)
Mutual labels:  qr-code, qr
Jsqr
A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within.
Stars: ✭ 2,722 (+15.19%)
Mutual labels:  qr-code, qr
Awesomeqrcode
An awesome QR code generator for Android.
Stars: ✭ 1,718 (-27.3%)
Mutual labels:  qr-code, qr-generator
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (-97.08%)
Mutual labels:  qr-code, qr
Code Scanner
Code scanner library for Android, based on ZXing
Stars: ✭ 543 (-77.02%)
Mutual labels:  qr-code, library
Qrbtf
An art QR code (qrcode) beautifier. 艺术二维码生成器。https://qrbtf.com
Stars: ✭ 1,391 (-41.13%)
Mutual labels:  qr-code, qr
React Qr Svg
React component for rendering SVG QR codes
Stars: ✭ 134 (-94.33%)
Mutual labels:  qr-code, qr
Dem.net
Digital Elevation model library in C#. 3D terrain models, line/point Elevations, intervisibility reports
Stars: ✭ 153 (-93.53%)
Mutual labels:  library
Byakuren
🎭 A theme color extracting library implemented by C.
Stars: ✭ 157 (-93.36%)
Mutual labels:  library
Codeeditor
Code Editor Native Way
Stars: ✭ 155 (-93.44%)
Mutual labels:  library
Harfbuzz
HarfBuzz text shaping engine
Stars: ✭ 2,206 (-6.64%)
Mutual labels:  library

QR Code generator library

Introduction

This project aims to be the best, clearest QR Code generator library in multiple languages. The primary goals are flexible options and absolute correctness. Secondary goals are compact implementation size and good documentation comments.

Home page with live JavaScript demo, extensive descriptions, and competitor comparisons: https://www.nayuki.io/page/qr-code-generator-library

Features

Core features:

  • Available in 6 programming languages, all with nearly equal functionality: Java, TypeScript/JavaScript, Python, Rust, C++, C
  • Significantly shorter code but more documentation comments compared to competing libraries
  • Supports encoding all 40 versions (sizes) and all 4 error correction levels, as per the QR Code Model 2 standard
  • Output format: Raw modules/pixels of the QR symbol
  • Detects finder-like penalty patterns more accurately than other implementations
  • Encodes numeric and special-alphanumeric text in less space than general text
  • Open-source code under the permissive MIT License

Manual parameters:

  • User can specify minimum and maximum version numbers allowed, then library will automatically choose smallest version in the range that fits the data
  • User can specify mask pattern manually, otherwise library will automatically evaluate all 8 masks and select the optimal one
  • User can specify absolute error correction level, or allow the library to boost it if it doesn't increase the version number
  • User can create a list of data segments manually and add ECI segments

Optional advanced features (Java only):

  • Encodes Japanese Unicode text in kanji mode to save a lot of space compared to UTF-8 bytes
  • Computes optimal segment mode switching for text with mixed numeric/alphanumeric/general/kanji parts

More information about QR Code technology and this library's design can be found on the project home page.

Examples

The code below is in Java, but the other language ports are designed with essentially the same API naming and behavior.

import java.awt.image.BufferedImage;
import java.io.File;
import java.util.List;
import javax.imageio.ImageIO;
import io.nayuki.qrcodegen.*;

// Simple operation
QrCode qr0 = QrCode.encodeText("Hello, world!", QrCode.Ecc.MEDIUM);
BufferedImage img = toImage(qr0, 4, 10);  // See QrCodeGeneratorDemo
ImageIO.write(img, "png", new File("qr-code.png"));

// Manual operation
List<QrSegment> segs = QrSegment.makeSegments("3141592653589793238462643383");
QrCode qr1 = QrCode.encodeSegments(segs, QrCode.Ecc.HIGH, 5, 5, 2, false);
for (int y = 0; y < qr1.size; y++) {
    for (int x = 0; x < qr1.size; x++) {
        (... paint qr1.getModule(x, y) ...)
    }
}

License

Copyright © 2021 Project Nayuki. (MIT License)
https://www.nayuki.io/page/qr-code-generator-library

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

  • The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

  • The Software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the Software or the use or other dealings in the Software.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].