I've been looking (for years) for any code generators or decoders that support or imply support for "Data Masking" as per the ISO/IEC specification. This is the application of any one of 8 "data mask patterns" to the finished QR code (one of 4 patterns for Micro QR codes), to give variety to the aesthetic appearance and functional contrast of a code, ie, to avoid large blobs that may interfere with timing and decoding.
I notice that the relatively new zxing.appspot.com doesn't support data masking, and I would be interested to know if the main zxing library even provides decode support.
Regards,
R
P.S. Since the words "data mask" don't appear anywhere in this group's archive of posts, I'll include the mask functions here for quick reference.
000 (i + j) mod 2 = 0
001 imod 2 = 0
010 jmod 3 = 0
011 (i + j) mod 3 = 0
100 ((i div 2) + (j div 3)) mod 2 = 0
101 (i j) mod 2 + (i j) mod 3 = 0
110 ((i j) mod 2 + (i j) mod 3) mod 2 = 0
111 ((i j) mod 3 + (i+j) mod 2) mod 2 = 0
Where i refers to the row position of the module in question and j to its column position, with (i, j) = (0, 0) for the top left module in the symbol.
-R
-R
--
You received this message because you are subscribed to the Google Groups "zxing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to zxing+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.