Address pull request feedback.

This commit is contained in:
= 2011-10-04 09:06:51 -07:00
parent 8f57135513
commit b24bec27ca
2 changed files with 3 additions and 3 deletions

4
pdf.js
View File

@ -4858,7 +4858,7 @@ var PartialEvaluator = (function partialEvaluator() {
}; };
properties.glyphs = this.extractEncoding(dict, xref, properties); properties.glyphs = this.extractEncoding(dict, xref, properties);
if (type.name == 'Type3') { if (type.name === 'Type3') {
properties.coded = true; properties.coded = true;
var charProcs = xref.fetchIfRef(dict.get('CharProcs')); var charProcs = xref.fetchIfRef(dict.get('CharProcs'));
var fontResources = xref.fetchIfRef(dict.get('Resources')) || resources; var fontResources = xref.fetchIfRef(dict.get('Resources')) || resources;
@ -5421,7 +5421,7 @@ var CanvasGraphics = (function canvasGraphics() {
lly, lly,
urx, urx,
ury) { ury) {
// TODO? According the spec we're also suppose to ignore any operators // TODO According to the spec we're also suppose to ignore any operators
// that set color or include images while processing this type3 font. // that set color or include images while processing this type3 font.
this.rectangle(llx, lly, urx - llx, ury - lly); this.rectangle(llx, lly, urx - llx, ury - lly);
this.clip(); this.clip();

View File

@ -181,6 +181,6 @@
"file": "pdfs/simpletype3font.pdf", "file": "pdfs/simpletype3font.pdf",
"link": false, "link": false,
"rounds": 1, "rounds": 1,
"type": "load" "type": "eq"
} }
] ]