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

Move JpegStream and JpxStream to their own files

This commit is contained in:
Jonas Jenwald 2017-10-26 13:00:09 +02:00
parent 0052dc2b0d
commit 36593d6bbc
6 changed files with 213 additions and 170 deletions

View file

@ -14,9 +14,10 @@
*/
import { assert, FormatError, ImageKind, info, warn } from '../shared/util';
import { DecodeStream, JpegStream } from './stream';
import { isStream, Name } from './primitives';
import { ColorSpace } from './colorspace';
import { DecodeStream } from './stream';
import { JpegStream } from './jpeg_stream';
import { JpxImage } from './jpx';
var PDFImage = (function PDFImageClosure() {