2024-04-15 10:12:05 +02:00
|
|
|
/* Copyright 2024 Mozilla Foundation
|
2012-08-31 15:48:21 -07:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2012-01-11 20:08:46 -06:00
|
|
|
|
2024-04-15 10:12:05 +02:00
|
|
|
import { BaseException } from "../shared/util.js";
|
|
|
|
import OpenJPEG from "../../external/openjpeg/openjpeg.js";
|
2015-11-21 10:32:47 -06:00
|
|
|
|
2019-10-01 13:10:14 +02:00
|
|
|
class JpxError extends BaseException {
|
|
|
|
constructor(msg) {
|
2021-08-09 12:02:49 +02:00
|
|
|
super(`JPX error: ${msg}`, "JpxError");
|
2017-06-28 13:51:31 -07:00
|
|
|
}
|
2019-10-01 13:10:14 +02:00
|
|
|
}
|
2017-06-28 13:51:31 -07:00
|
|
|
|
2021-05-05 13:02:58 +02:00
|
|
|
class JpxImage {
|
2024-04-15 10:12:05 +02:00
|
|
|
static #module = null;
|
2021-05-05 13:02:58 +02:00
|
|
|
|
2024-04-16 16:24:24 +02:00
|
|
|
static decode(data, ignoreColorSpace = false) {
|
2024-04-15 10:12:05 +02:00
|
|
|
this.#module ||= OpenJPEG();
|
|
|
|
const imageData = this.#module.decode(data, ignoreColorSpace);
|
2024-04-16 18:45:58 +02:00
|
|
|
if (typeof imageData === "string") {
|
|
|
|
throw new JpxError(imageData);
|
2021-05-05 13:02:58 +02:00
|
|
|
}
|
2024-04-15 10:12:05 +02:00
|
|
|
return imageData;
|
|
|
|
}
|
2021-05-05 13:02:58 +02:00
|
|
|
|
2024-04-15 10:12:05 +02:00
|
|
|
static cleanup() {
|
|
|
|
this.#module = null;
|
2021-05-05 13:02:58 +02:00
|
|
|
}
|
|
|
|
|
2024-04-15 10:12:05 +02:00
|
|
|
static parseImageProperties(stream) {
|
|
|
|
// No need to use OpenJPEG here since we're only getting very basic
|
|
|
|
// information which are located in the first bytes of the file.
|
2021-05-05 13:02:58 +02:00
|
|
|
let newByte = stream.getByte();
|
|
|
|
while (newByte >= 0) {
|
|
|
|
const oldByte = newByte;
|
|
|
|
newByte = stream.getByte();
|
|
|
|
const code = (oldByte << 8) | newByte;
|
|
|
|
// Image and tile size (SIZ)
|
|
|
|
if (code === 0xff51) {
|
|
|
|
stream.skip(4);
|
|
|
|
const Xsiz = stream.getInt32() >>> 0; // Byte 4
|
|
|
|
const Ysiz = stream.getInt32() >>> 0; // Byte 8
|
|
|
|
const XOsiz = stream.getInt32() >>> 0; // Byte 12
|
|
|
|
const YOsiz = stream.getInt32() >>> 0; // Byte 16
|
|
|
|
stream.skip(16);
|
|
|
|
const Csiz = stream.getUint16(); // Byte 36
|
2024-04-15 10:12:05 +02:00
|
|
|
return {
|
|
|
|
width: Xsiz - XOsiz,
|
|
|
|
height: Ysiz - YOsiz,
|
|
|
|
// Results are always returned as `Uint8ClampedArray`s.
|
|
|
|
bitsPerComponent: 8,
|
|
|
|
componentsCount: Csiz,
|
2021-05-05 13:02:58 +02:00
|
|
|
};
|
2012-04-04 23:43:26 +03:00
|
|
|
}
|
2021-05-05 13:02:58 +02:00
|
|
|
}
|
2024-04-15 10:12:05 +02:00
|
|
|
throw new JpxError("No size marker found in JPX stream");
|
2021-05-05 13:02:58 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-21 10:32:47 -06:00
|
|
|
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 15:59:37 +01:00
|
|
|
export { JpxImage };
|