1
0
Fork 0
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:
Chris Jones 2011-07-04 23:28:44 -04:00
parent fe09c1852c
commit 122d168b51
3 changed files with 4 additions and 4 deletions

View file

@ -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++)