mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 01:28:06 +02:00
fix some bugs
This commit is contained in:
parent
fe09c1852c
commit
122d168b51
3 changed files with 4 additions and 4 deletions
4
fonts.js
4
fonts.js
|
@ -1807,8 +1807,8 @@ CFF.prototype = {
|
|||
var data =
|
||||
"\x8b\x14" + // defaultWidth
|
||||
"\x8b\x15" + // nominalWidth
|
||||
self.encodeNumber(properties.stdHW) + "\x0a" + // StdHW
|
||||
self.encodeNumber(properties.stdVW) + "\x0b"; // StdVW
|
||||
self.encodeNumber(properties.stdHW || 0) + "\x0a" + // StdHW
|
||||
self.encodeNumber(properties.stdVW || 0) + "\x0b"; // StdVW
|
||||
|
||||
var stemH = properties.stemSnapH;
|
||||
for (var i = 0; i < stemH.length; i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue