David PHAM-VAN

Fix Exif parsing with an offset

... ... @@ -13,6 +13,7 @@
- Add Widget.draw() to paint any widget on a canvas
- Improve Chart labels
- Improve BoxBorder correctness
- Fix Exif parsing with an offset
## 1.13.0
... ...
... ... @@ -30,7 +30,7 @@ class PdfJpegInfo {
int width;
int height;
int color;
var offset = 0;
var offset = image.offsetInBytes;
while (offset < buffer.lengthInBytes) {
while (buffer.getUint8(offset) == 0xff) {
offset++;
... ...