426945b480
Please note that these changes were done automatically, using `gulp lint --fix`. Given that the major version number was increased, there's a fair number of (primarily whitespace) changes; please see https://prettier.io/blog/2020/03/21/2.0.0.html In order to reduce the size of these changes somewhat, this patch maintains the old "arrowParens" style for now (once mozilla-central updates Prettier we can simply choose the same formatting, assuming it will differ here).
96 lines
3.1 KiB
JavaScript
96 lines
3.1 KiB
JavaScript
/* Copyright 2012 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { DecodeStream } from "./stream.js";
|
|
import { JpxImage } from "./jpx.js";
|
|
import { shadow } from "../shared/util.js";
|
|
|
|
/**
|
|
* For JPEG 2000's we use a library to decode these images and
|
|
* the stream behaves like all the other DecodeStreams.
|
|
*/
|
|
const JpxStream = (function JpxStreamClosure() {
|
|
// eslint-disable-next-line no-shadow
|
|
function JpxStream(stream, maybeLength, dict, params) {
|
|
this.stream = stream;
|
|
this.maybeLength = maybeLength;
|
|
this.dict = dict;
|
|
this.params = params;
|
|
|
|
DecodeStream.call(this, maybeLength);
|
|
}
|
|
|
|
JpxStream.prototype = Object.create(DecodeStream.prototype);
|
|
|
|
Object.defineProperty(JpxStream.prototype, "bytes", {
|
|
get: function JpxStream_bytes() {
|
|
// If `this.maybeLength` is null, we'll get the entire stream.
|
|
return shadow(this, "bytes", this.stream.getBytes(this.maybeLength));
|
|
},
|
|
configurable: true,
|
|
});
|
|
|
|
JpxStream.prototype.ensureBuffer = function (requested) {
|
|
// No-op, since `this.readBlock` will always parse the entire image and
|
|
// directly insert all of its data into `this.buffer`.
|
|
};
|
|
|
|
JpxStream.prototype.readBlock = function () {
|
|
if (this.eof) {
|
|
return;
|
|
}
|
|
const jpxImage = new JpxImage();
|
|
jpxImage.parse(this.bytes);
|
|
|
|
const width = jpxImage.width;
|
|
const height = jpxImage.height;
|
|
const componentsCount = jpxImage.componentsCount;
|
|
const tileCount = jpxImage.tiles.length;
|
|
if (tileCount === 1) {
|
|
this.buffer = jpxImage.tiles[0].items;
|
|
} else {
|
|
const data = new Uint8ClampedArray(width * height * componentsCount);
|
|
|
|
for (let k = 0; k < tileCount; k++) {
|
|
const tileComponents = jpxImage.tiles[k];
|
|
const tileWidth = tileComponents.width;
|
|
const tileHeight = tileComponents.height;
|
|
const tileLeft = tileComponents.left;
|
|
const tileTop = tileComponents.top;
|
|
|
|
const src = tileComponents.items;
|
|
let srcPosition = 0;
|
|
let dataPosition = (width * tileTop + tileLeft) * componentsCount;
|
|
const imgRowSize = width * componentsCount;
|
|
const tileRowSize = tileWidth * componentsCount;
|
|
|
|
for (let j = 0; j < tileHeight; j++) {
|
|
const rowBytes = src.subarray(srcPosition, srcPosition + tileRowSize);
|
|
data.set(rowBytes, dataPosition);
|
|
srcPosition += tileRowSize;
|
|
dataPosition += imgRowSize;
|
|
}
|
|
}
|
|
this.buffer = data;
|
|
}
|
|
this.bufferLength = this.buffer.length;
|
|
this.eof = true;
|
|
};
|
|
|
|
return JpxStream;
|
|
})();
|
|
|
|
export { JpxStream };
|