mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 01:58:06 +02:00
Merge pull request #9073 from Snuffleupagus/image-streams-fixes
Fix the interface of `JpegStream`/`JpxStream`/`Jbig2Stream` to agree with the other `DecodeStream`s
This commit is contained in:
commit
ae07adf143
7 changed files with 238 additions and 183 deletions
|
@ -20,7 +20,7 @@ import {
|
|||
UNSUPPORTED_FEATURES, Util, warn
|
||||
} from '../shared/util';
|
||||
import { CMapFactory, IdentityCMap } from './cmap';
|
||||
import { DecodeStream, JpegStream, Stream } from './stream';
|
||||
import { DecodeStream, Stream } from './stream';
|
||||
import {
|
||||
Dict, isCmd, isDict, isEOF, isName, isRef, isStream, Name
|
||||
} from './primitives';
|
||||
|
@ -44,6 +44,7 @@ import { ColorSpace } from './colorspace';
|
|||
import { getGlyphsUnicode } from './glyphlist';
|
||||
import { getMetrics } from './metrics';
|
||||
import { isPDFFunction } from './function';
|
||||
import { JpegStream } from './jpeg_stream';
|
||||
import { MurmurHash3_64 } from './murmurhash3';
|
||||
import { OperatorList } from './operator_list';
|
||||
import { PDFImage } from './image';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue