David PHAM-VAN

Fix Jpeg size detection

... ... @@ -3,6 +3,7 @@
## 1.6.2
- Use the Barcode library to generate QR-Codes
- Fix Jpeg size detection
## 1.6.1
... ...
... ... @@ -55,7 +55,7 @@ class PdfJpegInfo {
final int len = buffer.getUint16(offset);
offset += 2;
if (mrkr >= 0xc0 && mrkr <= 0xcf) {
if (mrkr >= 0xc0 && mrkr <= 0xc2) {
height = buffer.getUint16(offset + 1);
width = buffer.getUint16(offset + 3);
color = buffer.getUint8(offset + 5);
... ...