mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Merge pull request #3890 from sriram-dev/3205-word-spacing
correct word spacing
This commit is contained in:
commit
d4167b62c8
3 changed files with 14 additions and 1 deletions
|
@ -4575,8 +4575,10 @@ var Font = (function FontClosure() {
|
|||
var glyph = this.charToGlyph(charcode);
|
||||
glyphs.push(glyph);
|
||||
// placing null after each word break charcode (ASCII SPACE)
|
||||
if (charcode == 0x20)
|
||||
// Ignore occurences of 0x20 in multiple-byte codes.
|
||||
if (length === 1 && chars.charCodeAt(i - 1) === 0x20) {
|
||||
glyphs.push(null);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
2
test/pdfs/issue3205.pdf.link
Normal file
2
test/pdfs/issue3205.pdf.link
Normal file
|
@ -0,0 +1,2 @@
|
|||
http://teach.beaverton.k12.or.us/~shannon_schilling/FOV1-00015633/FOV1-0007B939/FOV1-000B0E58/Physics%20HL%20paper%202%20TZ1%20markscheme.pdf
|
||||
|
|
@ -1436,5 +1436,14 @@
|
|||
"firstPage": 1,
|
||||
"lastPage": 2,
|
||||
"type": "eq"
|
||||
},
|
||||
{ "id": "issue3205",
|
||||
"file": "pdfs/issue3205.pdf",
|
||||
"md5": "e833326f69f2fdf7c1c8438fe1d3b622",
|
||||
"rounds": 1,
|
||||
"link": true,
|
||||
"firstPage": 4,
|
||||
"lastPage": 4,
|
||||
"type": "eq"
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue