Browse Source

Suppresses useless for PDF rendering font tables

Yury Delendik 13 years ago
parent
commit
e4c8121ed4
  1. 6
      src/fonts.js
  2. 1
      test/pdfs/issue1233.pdf.link
  3. 8
      test/test_manifest.json

6
src/fonts.js

@ -3227,6 +3227,9 @@ var Font = (function FontClosure() { @@ -3227,6 +3227,9 @@ var Font = (function FontClosure() {
var requiredTables = ['OS/2', 'cmap', 'head', 'hhea',
'hmtx', 'maxp', 'name', 'post'];
var optionalTables = ['cvt ', 'fpgm', 'glyf', 'loca', 'prep',
'CFF ', 'VORG', 'vhea', 'vmtx'];
var header = readOpenTypeHeader(font);
var numTables = header.numTables;
@ -3252,6 +3255,9 @@ var Font = (function FontClosure() { @@ -3252,6 +3255,9 @@ var Font = (function FontClosure() {
os2 = table;
requiredTables.splice(index, 1);
} else if (optionalTables.indexOf(table.tag) < 0) {
// skipping table if it's not a required or optional table
continue;
} else {
if (table.tag == 'vmtx')
vmtx = table;

1
test/pdfs/issue1233.pdf.link

@ -0,0 +1 @@ @@ -0,0 +1 @@
http://princexml.com/samples/math.pdf

8
test/test_manifest.json

@ -602,6 +602,14 @@ @@ -602,6 +602,14 @@
"link": true,
"type": "eq"
},
{ "id": "issue1233",
"file": "pdfs/issue1233.pdf",
"md5": "2d3565b0a286e29955796c37c66326c1",
"rounds": 1,
"pageLimit": 1,
"link": true,
"type": "eq"
},
{ "id": "issue1243",
"file": "pdfs/issue1243.pdf",
"md5": "130c849b83513d5ac5e03c6421fc7489",

Loading…
Cancel
Save