1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00
This commit is contained in:
sbarman 2011-07-19 11:33:54 -07:00
parent 173c68ef86
commit b8df2eb68b

View file

@ -424,9 +424,6 @@ var Font = (function() {
this.compositeFont = properties.compositeFont; this.compositeFont = properties.compositeFont;
}; };
function parseCFF(file) {
};
function stringToArray(str) { function stringToArray(str) {
var array = []; var array = [];
for (var i = 0; i < str.length; ++i) for (var i = 0; i < str.length; ++i)
@ -1999,6 +1996,7 @@ CFF.prototype = {
var Type2CFF = (function() { var Type2CFF = (function() {
// TODO: replace parsing code with the Type2Parser in font_utils.js
function constructor(file) { function constructor(file) {
var bytes = file.getBytes(); var bytes = file.getBytes();
this.bytes = bytes; this.bytes = bytes;