Can't decode the QR code on IOS system
The same binary data generates QR code on IOS system and Android system. But the data obtained when decoding with zxing is different. Some data obtained by IOS is missing.
ArrayList<byte[]> bytes = (ArrayList<byte[]>) rawResult.getResultMetadata().get(ResultMetadataType.BYTE_SEGMENTS);
The size of the bytes obtained is 3. The first position of the array obtained by Android system is the correct data required, but the first position of the array of IOS system is smaller than that of Android. The decoded code can correctly decode the QR code of IOS system in the first half of last year. This year, reported that the QR code of IOS system could not be decode.
Is it because of the ios15 system? Or some other reason?
Do you use the java version of zxing? You code snippet doesn't look like C#, which is used by ZXing.Net. If you use java you should better ask your question here: https://github.com/zxing/zxing Thanks.