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-12 10:53:28 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
274bf418eb56fa1525b3bbfca7bb491ddc16f087
274bf418
1 parent
6e455e0c
Update Pdfium version to 4929
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
printing/CHANGELOG.md
printing/README.md
printing/linux/CMakeLists.txt
printing/windows/CMakeLists.txt
printing/CHANGELOG.md
View file @
274bf41
...
...
@@ -2,10 +2,10 @@
## 5.7.3
-
Update pdfium version to 4861
-
Fix crash when Android load a PDF file which had password
-
Fix parsing TTF fonts with zero-length glyphs
-
Fix PdfPreview page format and orientation updates
-
Update Pdfium version to 4929
## 5.7.2
...
...
printing/README.md
View file @
274bf41
...
...
@@ -46,6 +46,16 @@ for documentation.
</script>
```
6.
For Windows and Linux, you can force the pdfium version and architecture
on your main
`CMakeLists.txt`
with:
```
dart
set
(
PDFIUM_VERSION
"4929"
CACHE
STRING
""
FORCE
)
set
(
PDFIUM_ARCH
"x64"
CACHE
STRING
""
FORCE
)
```
See the releases here:
<https://github.com/bblanchon/pdfium-binaries/releases>
## Examples
```
dart
...
...
printing/linux/CMakeLists.txt
View file @
274bf41
...
...
@@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.10)
set
(
PROJECT_NAME
"printing"
)
project
(
${
PROJECT_NAME
}
LANGUAGES CXX
)
set
(
PDFIUM_VERSION
"4
861
"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_VERSION
"4
929
"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_ARCH
"x64"
CACHE STRING
"Architecture of pdfium used"
)
if
(
${
PDFIUM_VERSION
}
STREQUAL
"latest"
)
...
...
printing/windows/CMakeLists.txt
View file @
274bf41
...
...
@@ -16,7 +16,7 @@ cmake_minimum_required(VERSION 3.15)
set
(
PROJECT_NAME
"printing"
)
project
(
${
PROJECT_NAME
}
LANGUAGES CXX
)
set
(
PDFIUM_VERSION
"4
861
"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_VERSION
"4
929
"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_ARCH
"x64"
CACHE STRING
"Architecture of pdfium used"
)
if
(
${
PDFIUM_VERSION
}
STREQUAL
"latest"
)
...
...
Please
register
or
login
to post a comment