OkapiBarcode
OkapiBarcode copied to clipboard
Open-source barcode encoding program written in Java
(Extracted this out of #91 because #91 is closed already.) I have noticed an encoding issue with one specific character: \` (hex `60`) gets encoded in the barcode into `?`...
Hi, is there a plan to support creating Swiss QR Code in the near future? (The Swiss banks placed new invoice forms with QR Code which contains invoice details. In...
Hey devs! I'd like to try this library on Android because it supports outputting way more barcode formats than zxing support, so I am hoping I can fix https://github.com/TheLastProject/Catima/issues/181 using...
It might be nice if there were a way to have Okapi automatically slice-and-dice data into multiple structured append (Macro PDF417) symbols.
QrCode qr = new QrCode(); qr.setPreferredEccLevel(QrCode.EccLevel.L); qr.setPreferredVersion(1); //pass qr.setContent("HTTPS://AA.AA/9C5HNT0CJE6"); //failing qr.setContent("HTTPS://AA.AA/9293750CJE7"); Exception in thread "main" uk.org.okapibarcode.backend.OkapiException: Input too long for selected symbol size at uk.org.okapibarcode.backend.QrCode.encode(QrCode.java:423) at uk.org.okapibarcode.backend.Symbol.setContent(Symbol.java:529) however it works...
`0x01 >> pattern` should be `0x01
### Expected behavior I expected http://www.okapibarcode.org.uk to be reachable when accessed. ### Actual behavior The website isn't reachable. It gives an error message. ### Steps to reproduce the behavior *...
Could you please split the project into two projects, one only providing the backend (e.g. woo-j/OkapiBarcode) and this Project adding the frontend. I only use the backend classes for generating...
I understand that OkapiBarcode supports suppressing of code set C for Code 128 barcodes using the `setSuppressModeC` method. It would be convenient for a project I am working on if...