qrencode
Version, currently 0.2.35 versions
github.com/woodruffw/qrencode.cr
Crystal bindings for libqrencode (qrencode), a library for QR code generation
29 stars
0 dependents
License: MIT with restrictions
Installation
# Add this to your shard.yml
dependencies:
qrencode:
github: woodruffw/qrencode.cr
version: ~> 0.2.3Then run:
shards installshard.yml
- Crystal
0.34.0- License
- MIT with restrictions
- Author
- William Woodruff <william@yossarian.net>
Dependencies
This version declares no dependencies.
README
qrencode.cr
===========

[](https://github.com/woodruffw/qrencode.cr/actions?query=workflow%3ACI)
Crystal bindings for [libqrencode](https://fukuchi.org/works/qrencode/index.html.en).
## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
qrencode:
github: woodruffw/qrencode.cr
branch: master
```
`libqrencode` is required. On Debian-based systems, it can be installed via:
```bash
$ sudo apt install libqrencode-dev
```
## Usage
`QRencode` provides methods for generating a QR symbol from various inputs (ASCII/UTF8 text, numerics,
Kanji (shift-JIS), etc).
It does *not* perform the task of rendering QR symbol data to an image format (e.g., PNG) -- it's
up to you (or a client library) to do that.
```crystal
require "qrencode"
qr = QRencode::QRcode.new("this is my input string")
qr.version
qr.width
qr.data
qr.each_row do |row|
# each row is `width` bytes
row.each do |byte|
if QRencode::Util.black? byte
print "B"
else
print "W"
end
end
puts
end
```
Check out the [examples/](examples/) directory.
## Contributing
1. Fork it (https://github.com/woodruffw/qrencode/fork)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
## Contributors
- [woodruffw](https://github.com/woodruffw) William Woodruff - creator, maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.2.3- Tagged
- Apr 11, 2021
- Commit
7920d1ffb3ef- Crystal
0.34.0- Indexed
- yes
Dependents
No indexed shard depends on this one yet.
Repository
github.com/woodruffw/qrencode.cr
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 12, 2026
- Synced
- Aug 12, 2026
- Versions
- 5