// Unicode Private Use Area
var kCmapGlyphOffset = 0xE000;
+// Until hinting is fully supported this constant can be used
+var kHintingEnabled = false;
+
/**
* Hold a map of decoded fonts and of the standard fourteen Type1
* fonts and their acronyms.
i++;
continue;
}
+ } else if (!kHintingEnabled && (value == 1 || value == 2)) {
+ charstring.push('drop', 'drop', 'drop', 'drop', 'drop', 'drop');
+ continue;
}
command = charStringDictionary['12'][escape];
charstring.push(lsb, 'hmoveto');
continue;
+ } else if (!kHintingEnabled && (value == 1 || value == 3)) {
+ charstring.push('drop', 'drop');
+ continue;
}
command = charStringDictionary[value];
}