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
2020-04-21 20:25:36 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6bc5c26f533df16a4f4e8149b7638a3abf577a22
6bc5c26f
1 parent
98991b4d
Fix Jpeg size detection
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/exif.dart
pdf/CHANGELOG.md
View file @
6bc5c26
...
...
@@ -3,6 +3,7 @@
## 1.6.2
-
Use the Barcode library to generate QR-Codes
-
Fix Jpeg size detection
## 1.6.1
...
...
pdf/lib/src/exif.dart
View file @
6bc5c26
...
...
@@ -55,7 +55,7 @@ class PdfJpegInfo {
final
int
len
=
buffer
.
getUint16
(
offset
);
offset
+=
2
;
if
(
mrkr
>=
0xc0
&&
mrkr
<=
0xc
f
)
{
if
(
mrkr
>=
0xc0
&&
mrkr
<=
0xc
2
)
{
height
=
buffer
.
getUint16
(
offset
+
1
);
width
=
buffer
.
getUint16
(
offset
+
3
);
color
=
buffer
.
getUint8
(
offset
+
5
);
...
...
Please
register
or
login
to post a comment