https://github.com/olooce/qr_generator
A custom implementation of a QR code generator in C++.
https://github.com/olooce/qr_generator
qr-code-generator reed-solomon
Last synced: 5 months ago
JSON representation
A custom implementation of a QR code generator in C++.
- Host: GitHub
- URL: https://github.com/olooce/qr_generator
- Owner: Olooce
- License: mit
- Created: 2024-10-01T10:12:46.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-16T07:27:51.000Z (over 1 year ago)
- Last Synced: 2025-05-06T22:43:25.838Z (about 1 year ago)
- Topics: qr-code-generator, reed-solomon
- Language: C++
- Homepage:
- Size: 3.99 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---
# QR Code Generator
This project is a custom implementation of a QR code generator in C++, supporting up to version 40 QR codes. The goal is to understand the structure and encoding process of QR codes.
## Inspiration
I got the inspiration for this project from [this video on YouTube](https://youtu.be/w5ebcowAJD8?si=LtSrUG-KsjwM-D8R).
I am trying to recreate the logic behind QR codes and how they represent data.
## Building the Project
1. Make sure you have [CMake](https://cmake.org/) and a C++ compiler installed.
2. Clone the repository.
3. Run the following commands:
``` sh
mkdir build
cd build
cmake ..
make
```
## Running
---