You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an rMQR Code image generator implemented in Python. This is implemented based on [ISO/IEC 23941:2022](https://www.iso.org/standard/77404.html).
5
+
The rMQR Code is a rectangular two-dimensional barcode. This package can generate an rMQR Code image. This is implemented based on [ISO/IEC 23941: Rectangular Micro QR Code (rMQR) bar code symbology specification](https://www.iso.org/standard/77404.html).
- Please verify an image generated by this software whether it can decode correctly before use.
10
17
- Because this is in early stage, QR Code readers may have not been supported rMQR Code yet.
11
18
19
+
12
20
## 🚀 Installation
13
21
```
14
22
pip install rmqrcode
@@ -64,7 +72,7 @@ The `fit_strategy` parameter is enum value of `rmqrcode.FitStrategy` to specify
64
72
-**`FitStrategy.BALANCED`**: Try to keep balance of width and height.
65
73
66
74
Here is an example of images genereated by each fit strategies for data `Test test test`:
67
-

75
+

68
76
69
77
### Save as image
70
78
```py
@@ -76,7 +84,7 @@ image.save("my_qr.png")
76
84
```
77
85
78
86
79
-
## 📚 Advanced Usage
87
+
## 📙 Advanced Usage
80
88
### Select rMQR Code size manually
81
89
To select rMQR Code size manually, use `rMQR()` constructor.
82
90
```py
@@ -108,6 +116,17 @@ The rMQR Code has the four encoding modes Numeric, Alphanumeric, Byte and Kanji
108
116
|Byte|✅|
109
117
|Kanji||
110
118
119
+
120
+
## 🤝 Contiributing
121
+
Any suggestions are welcome! If you are interesting in contiributing, please read [CONTRIBUTING](https://github.com/OUDON/rmqrcode-python/blob/develop/CONTRIBUTING.md).
122
+
123
+
124
+
## 📚 References
125
+
-[Rectangular Micro QR Code (rMQR) bar code symbology specification: ISO/IEC 23941](https://www.iso.org/standard/77404.html)
0 commit comments