1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 01:58:06 +02:00

Implements RunLengthDecode filter

This commit is contained in:
notmasteryet 2012-01-14 13:47:14 -06:00
parent a908827175
commit 6de2ca568d
2 changed files with 48 additions and 0 deletions

View file

@ -249,6 +249,9 @@ var Parser = (function ParserClosure() {
if (name == 'CCITTFaxDecode' || name == 'CCF') {
return new CCITTFaxStream(stream, params);
}
if (name == 'RunLengthDecode') {
return new RunLengthStream(stream);
}
warn('filter "' + name + '" not supported yet');
return stream;
}