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
2022-03-19 14:02:26 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
864f1f5279693c35833ab399b98a7c5149b809b6
864f1f52
1 parent
4d1fbc75
Fix missing smask subtype
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/pdf/obj/smask.dart
pdf/CHANGELOG.md
View file @
864f1f5
...
...
@@ -3,6 +3,7 @@
## 3.7.3
-
Fix missing endobj with compressed xref
-
Fix missing smask subtype
## 3.7.2
...
...
pdf/lib/src/pdf/obj/smask.dart
View file @
864f1f5
...
...
@@ -29,7 +29,7 @@ class PdfSoftMask {
bool
isolated
=
false
,
bool
knockout
=
false
,
bool
invert
=
false
})
{
_mask
=
PdfGraphicXObject
(
document
);
_mask
=
PdfGraphicXObject
(
document
,
'/Form'
);
_mask
.
params
[
'/BBox'
]
=
PdfArray
.
fromNum
([
boundingBox
.
x
,
boundingBox
.
y
,
...
...
Please
register
or
login
to post a comment