File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 30
30
} ( e , c [ l ] ) , h . fromCharCode . apply ( h , e ) ;
31
31
}
32
32
33
-
33
+ /**
34
+ * TODO: Not Tested:
34
35
//https://gist.github.com/revolunet/843889
35
36
// LZW-compress a string
36
37
var LZWEncode = function(s, options) {
100
101
}
101
102
return out.join("");
102
103
}
103
-
104
+ */
104
105
var ASCIIHexEncode = function ( value ) {
105
106
var result = '' ;
106
107
var i ;
131
132
return result ;
132
133
}
133
134
135
+ /**
136
+ * Not Tested:
134
137
var RunLengthEncode = function(data) {
135
138
function convertToAscii(str) {
136
139
'use strict';
190
193
}
191
194
return decoded;
192
195
}
193
-
196
+ */
194
197
var FlatePredictors = {
195
198
None : 1 ,
196
199
TIFF : 2 ,
271
274
data = FlateEncode ( data ) ;
272
275
reverseChain . push ( "/FlateDecode" ) ;
273
276
break ;
277
+ /**
274
278
case "LZWDecode":
275
279
case "/LZWDecode":
276
280
data = LZWDecode(data);
281
285
data = LZWEncode(data);
282
286
reverseChain.push("/LZWDecode");
283
287
break;
288
+ */
284
289
default :
285
290
throw "The filter: \"" + filterChain [ i ] + "\" is not implemented" ;
286
291
}
You can’t perform that action at this time.
0 commit comments