/
githubmirror
/
pdf.js
Обзор
Документация
Войти
/
githubmirror
/
pdf.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/scripting_api/color.js
140 строк
3 KB
Jonas Jenwald
Remove unnecessary class constructors in the `src` folder
19 фев 2026, 02:08
19 фев 2026, 02:08
7fd9397
Код
Авторство
О чём код?
/* Copyright 2020 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 { ColorConverters } from "../shared/scripting_utils.js"; import { PDFObject } from "./pdf_object.js"; class Color extends PDFObject { transparent = ["T"]; black = ["G", 0]; white = ["G", 1]; red = ["RGB", 1, 0, 0]; green = ["RGB", 0, 1, 0]; blue = ["RGB", 0, 0, 1]; cyan = ["CMYK", 1, 0, 0, 0]; magenta = ["CMYK", 0, 1, 0, 0]; yellow = ["CMYK", 0, 0, 1, 0]; dkGray = ["G", 0.25]; gray = ["G", 0.5]; ltGray = ["G", 0.75]; constructor() { super({}); } static _isValidSpace(cColorSpace) { return ( typeof cColorSpace === "string" && (cColorSpace === "T" || cColorSpace === "G" || cColorSpace === "RGB" || cColorSpace === "CMYK") ); } static _isValidColor(colorArray) { if (!Array.isArray(colorArray) || colorArray.length === 0) { return false; } const space = colorArray[0]; if (!Color._isValidSpace(space)) { return false; } switch (space) { case "T": if (colorArray.length !== 1) { return false; } break; case "G": if (colorArray.length !== 2) { return false; } break; case "RGB": if (colorArray.length !== 4) { return false; } break; case "CMYK": if (colorArray.length !== 5) { return false; } break; default: return false; } return colorArray .slice(1) .every(c => typeof c === "number" && c >= 0 && c <= 1); } static _getCorrectColor(colorArray) { return Color._isValidColor(colorArray) ? colorArray : ["G", 0]; } convert(colorArray, cColorSpace) { if (!Color._isValidSpace(cColorSpace)) { return this.black; } if (cColorSpace === "T") { return ["T"]; } colorArray = Color._getCorrectColor(colorArray); if (colorArray[0] === cColorSpace) { return colorArray; } if (colorArray[0] === "T") { return this.convert(this.black, cColorSpace); } return ColorConverters[`${colorArray[0]}_${cColorSpace}`]( colorArray.slice(1) ); } equal(colorArray1, colorArray2) { colorArray1 = Color._getCorrectColor(colorArray1); colorArray2 = Color._getCorrectColor(colorArray2); if (colorArray1[0] === "T" || colorArray2[0] === "T") { return colorArray1[0] === "T" && colorArray2[0] === "T"; } if (colorArray1[0] !== colorArray2[0]) { colorArray2 = this.convert(colorArray2, colorArray1[0]); } return colorArray1.slice(1).every((c, i) => c === colorArray2[i + 1]); } } export { Color };