mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-10 18:25:37 +02:00
Add RL abbreviation for run length decode.
This commit is contained in:
parent
4616ee0ee8
commit
32b7eba6de
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ var Parser = (function ParserClosure() {
|
||||||
if (name == 'CCITTFaxDecode' || name == 'CCF') {
|
if (name == 'CCITTFaxDecode' || name == 'CCF') {
|
||||||
return new CCITTFaxStream(stream, params);
|
return new CCITTFaxStream(stream, params);
|
||||||
}
|
}
|
||||||
if (name == 'RunLengthDecode') {
|
if (name == 'RunLengthDecode' || name == 'RL') {
|
||||||
return new RunLengthStream(stream);
|
return new RunLengthStream(stream);
|
||||||
}
|
}
|
||||||
if (name == 'JBIG2Decode') {
|
if (name == 'JBIG2Decode') {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue