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-03-13 08:15:54 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b913ad33b7c97ceb82d7d734b7259aac54d2545f
b913ad33
1 parent
9673c50f
Add asset pdf printing example
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
printing/README.md
printing/README.md
View file @
b913ad3
...
...
@@ -126,3 +126,10 @@ await for (var page in Printing.raster(doc.save(), pages: [0, 1], dpi: 72)) {
print
(
image
);
}
```
To print an existing Pdf file from a Flutter asset:
```
dart
final
pdf
=
await
rootBundle
.
load
(
'document.pdf'
);
await
Printing
.
layoutPdf
(
onLayout:
(
_
)
=>
pdf
.
buffer
.
asUint8List
());
```
...
...
Please
register
or
login
to post a comment