Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2021-01-06 08:17:27 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
32811c298947ece9ee3e5d9000c2c8649c6cf9aa
32811c29
1 parent
a7d7fb54
Fix Exif parsing with an offset
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/pdf/exif.dart
pdf/CHANGELOG.md
View file @
32811c2
...
...
@@ -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
...
...
pdf/lib/src/pdf/exif.dart
View file @
32811c2
...
...
@@ -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
++;
...
...
Please
register
or
login
to post a comment