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
2023-12-03 08:29:32 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
98882ff7a6b8a53aab3639b51d3df57762085ba0
98882ff7
1 parent
1a129e17
Update changelog
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
pdf/CHANGELOG.md
pdf/lib/src/pdf/font/ttf_writer.dart
pdf/CHANGELOG.md
View file @
98882ff
...
...
@@ -3,6 +3,7 @@
## 3.10.7
-
Fix empty lines text gap
-
Fix lookup index of glyph for space character
[
Hendrik-Brower
]
## 3.10.6
...
...
pdf/lib/src/pdf/font/ttf_writer.dart
View file @
98882ff
...
...
@@ -74,7 +74,8 @@ class TtfWriter {
for
(
final
char
in
chars
)
{
if
(
char
==
32
)
{
final
glyph
=
TtfGlyphInfo
(
ttf
.
charToGlyphIndexMap
[
char
]!,
Uint8List
(
0
),
const
<
int
>[]);
final
glyph
=
TtfGlyphInfo
(
ttf
.
charToGlyphIndexMap
[
char
]!,
Uint8List
(
0
),
const
<
int
>[]);
glyphsMap
[
glyph
.
index
]
=
glyph
;
charMap
[
char
]
=
glyph
.
index
;
continue
;
...
...
Please
register
or
login
to post a comment