mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Move JpegStream
and JpxStream
to their own files
This commit is contained in:
parent
0052dc2b0d
commit
36593d6bbc
6 changed files with 213 additions and 170 deletions
|
@ -14,8 +14,8 @@
|
|||
*/
|
||||
|
||||
import {
|
||||
Ascii85Stream, AsciiHexStream, FlateStream, JpegStream, JpxStream, LZWStream,
|
||||
NullStream, PredictorStream, RunLengthStream
|
||||
Ascii85Stream, AsciiHexStream, FlateStream, LZWStream, NullStream,
|
||||
PredictorStream, RunLengthStream
|
||||
} from './stream';
|
||||
import {
|
||||
assert, FormatError, info, isNum, isString, MissingDataException, StreamType,
|
||||
|
@ -26,6 +26,8 @@ import {
|
|||
} from './primitives';
|
||||
import { CCITTFaxStream } from './ccitt_stream';
|
||||
import { Jbig2Stream } from './jbig2_stream';
|
||||
import { JpegStream } from './jpeg_stream';
|
||||
import { JpxStream } from './jpx_stream';
|
||||
|
||||
var MAX_LENGTH_TO_CACHE = 1000;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue