209 lines
5.8 KiB
JavaScript
209 lines
5.8 KiB
JavaScript
import {
|
|
createCanvasContext2D
|
|
} from "./chunk-YWIWRQT2.js";
|
|
import {
|
|
clamp,
|
|
toFixed
|
|
} from "./chunk-54BTDBAD.js";
|
|
|
|
// node_modules/ol/color.js
|
|
var NO_COLOR = [NaN, NaN, NaN, 0];
|
|
var colorParseContext;
|
|
function getColorParseContext() {
|
|
if (!colorParseContext) {
|
|
colorParseContext = createCanvasContext2D(1, 1, void 0, {
|
|
willReadFrequently: true,
|
|
desynchronized: true
|
|
});
|
|
}
|
|
return colorParseContext;
|
|
}
|
|
var rgbModernRegEx = /^rgba?\(\s*(\d+%?)\s+(\d+%?)\s+(\d+%?)(?:\s*\/\s*(\d+%|\d*\.\d+|[01]))?\s*\)$/i;
|
|
var rgbLegacyAbsoluteRegEx = /^rgba?\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)(?:\s*,\s*(\d+%|\d*\.\d+|[01]))?\s*\)$/i;
|
|
var rgbLegacyPercentageRegEx = /^rgba?\(\s*(\d+%)\s*,\s*(\d+%)\s*,\s*(\d+%)(?:\s*,\s*(\d+%|\d*\.\d+|[01]))?\s*\)$/i;
|
|
var hexRegEx = /^#([\da-f]{3,4}|[\da-f]{6}|[\da-f]{8})$/i;
|
|
function toColorComponent(s, divider) {
|
|
return s.endsWith("%") ? Number(s.substring(0, s.length - 1)) / divider : Number(s);
|
|
}
|
|
function throwInvalidColor(color) {
|
|
throw new Error('failed to parse "' + color + '" as color');
|
|
}
|
|
function parseRgba(color) {
|
|
if (color.toLowerCase().startsWith("rgb")) {
|
|
const rgb = color.match(rgbLegacyAbsoluteRegEx) || color.match(rgbModernRegEx) || color.match(rgbLegacyPercentageRegEx);
|
|
if (rgb) {
|
|
const alpha = rgb[4];
|
|
const rgbDivider = 100 / 255;
|
|
return [
|
|
clamp(toColorComponent(rgb[1], rgbDivider) + 0.5 | 0, 0, 255),
|
|
clamp(toColorComponent(rgb[2], rgbDivider) + 0.5 | 0, 0, 255),
|
|
clamp(toColorComponent(rgb[3], rgbDivider) + 0.5 | 0, 0, 255),
|
|
alpha !== void 0 ? clamp(toColorComponent(alpha, 100), 0, 1) : 1
|
|
];
|
|
}
|
|
throwInvalidColor(color);
|
|
}
|
|
if (color.startsWith("#")) {
|
|
if (hexRegEx.test(color)) {
|
|
const hex = color.substring(1);
|
|
const step = hex.length <= 4 ? 1 : 2;
|
|
const colorFromHex = [0, 0, 0, 255];
|
|
for (let i = 0, ii = hex.length; i < ii; i += step) {
|
|
let colorComponent = parseInt(hex.substring(i, i + step), 16);
|
|
if (step === 1) {
|
|
colorComponent += colorComponent << 4;
|
|
}
|
|
colorFromHex[i / step] = colorComponent;
|
|
}
|
|
colorFromHex[3] = colorFromHex[3] / 255;
|
|
return colorFromHex;
|
|
}
|
|
throwInvalidColor(color);
|
|
}
|
|
const context = getColorParseContext();
|
|
context.fillStyle = "#abcdef";
|
|
let invalidCheckFillStyle = context.fillStyle;
|
|
context.fillStyle = color;
|
|
if (context.fillStyle === invalidCheckFillStyle) {
|
|
context.fillStyle = "#fedcba";
|
|
invalidCheckFillStyle = context.fillStyle;
|
|
context.fillStyle = color;
|
|
if (context.fillStyle === invalidCheckFillStyle) {
|
|
throwInvalidColor(color);
|
|
}
|
|
}
|
|
const colorString = context.fillStyle;
|
|
if (colorString.startsWith("#") || colorString.startsWith("rgba")) {
|
|
return parseRgba(colorString);
|
|
}
|
|
context.clearRect(0, 0, 1, 1);
|
|
context.fillRect(0, 0, 1, 1);
|
|
const colorFromImage = Array.from(context.getImageData(0, 0, 1, 1).data);
|
|
colorFromImage[3] = toFixed(colorFromImage[3] / 255, 3);
|
|
return colorFromImage;
|
|
}
|
|
function asString(color) {
|
|
if (typeof color === "string") {
|
|
return color;
|
|
}
|
|
return toString(color);
|
|
}
|
|
var MAX_CACHE_SIZE = 1024;
|
|
var cache = {};
|
|
var cacheSize = 0;
|
|
function withAlpha(color) {
|
|
if (color.length === 4) {
|
|
return color;
|
|
}
|
|
const output = color.slice();
|
|
output[3] = 1;
|
|
return output;
|
|
}
|
|
function b1(v) {
|
|
return v > 31308e-7 ? Math.pow(v, 1 / 2.4) * 269.025 - 14.025 : v * 3294.6;
|
|
}
|
|
function b2(v) {
|
|
return v > 0.2068965 ? Math.pow(v, 3) : (v - 4 / 29) * (108 / 841);
|
|
}
|
|
function a1(v) {
|
|
return v > 10.314724 ? Math.pow((v + 14.025) / 269.025, 2.4) : v / 3294.6;
|
|
}
|
|
function a2(v) {
|
|
return v > 88564e-7 ? Math.pow(v, 1 / 3) : v / (108 / 841) + 4 / 29;
|
|
}
|
|
function rgbaToLcha(color) {
|
|
const r = a1(color[0]);
|
|
const g = a1(color[1]);
|
|
const b = a1(color[2]);
|
|
const y = a2(r * 0.222488403 + g * 0.716873169 + b * 0.06060791);
|
|
const l = 500 * (a2(r * 0.452247074 + g * 0.399439023 + b * 0.148375274) - y);
|
|
const q = 200 * (y - a2(r * 0.016863605 + g * 0.117638439 + b * 0.865350722));
|
|
const h = Math.atan2(q, l) * (180 / Math.PI);
|
|
return [
|
|
116 * y - 16,
|
|
Math.sqrt(l * l + q * q),
|
|
h < 0 ? h + 360 : h,
|
|
color[3]
|
|
];
|
|
}
|
|
function lchaToRgba(color) {
|
|
const l = (color[0] + 16) / 116;
|
|
const c = color[1];
|
|
const h = color[2] * Math.PI / 180;
|
|
const y = b2(l);
|
|
const x = b2(l + c / 500 * Math.cos(h));
|
|
const z = b2(l - c / 200 * Math.sin(h));
|
|
const r = b1(x * 3.021973625 - y * 1.617392459 - z * 0.404875592);
|
|
const g = b1(x * -0.943766287 + y * 1.916279586 + z * 0.027607165);
|
|
const b = b1(x * 0.069407491 - y * 0.22898585 + z * 1.159737864);
|
|
return [
|
|
clamp(r + 0.5 | 0, 0, 255),
|
|
clamp(g + 0.5 | 0, 0, 255),
|
|
clamp(b + 0.5 | 0, 0, 255),
|
|
color[3]
|
|
];
|
|
}
|
|
function fromString(s) {
|
|
if (s === "none") {
|
|
return NO_COLOR;
|
|
}
|
|
if (cache.hasOwnProperty(s)) {
|
|
return cache[s];
|
|
}
|
|
if (cacheSize >= MAX_CACHE_SIZE) {
|
|
let i = 0;
|
|
for (const key in cache) {
|
|
if ((i++ & 3) === 0) {
|
|
delete cache[key];
|
|
--cacheSize;
|
|
}
|
|
}
|
|
}
|
|
const color = parseRgba(s);
|
|
if (color.length !== 4) {
|
|
throwInvalidColor(s);
|
|
}
|
|
for (const c of color) {
|
|
if (isNaN(c)) {
|
|
throwInvalidColor(s);
|
|
}
|
|
}
|
|
cache[s] = color;
|
|
++cacheSize;
|
|
return color;
|
|
}
|
|
function asArray(color) {
|
|
if (Array.isArray(color)) {
|
|
return color;
|
|
}
|
|
return fromString(color);
|
|
}
|
|
function toString(color) {
|
|
let r = color[0];
|
|
if (r != (r | 0)) {
|
|
r = r + 0.5 | 0;
|
|
}
|
|
let g = color[1];
|
|
if (g != (g | 0)) {
|
|
g = g + 0.5 | 0;
|
|
}
|
|
let b = color[2];
|
|
if (b != (b | 0)) {
|
|
b = b + 0.5 | 0;
|
|
}
|
|
const a = color[3] === void 0 ? 1 : Math.round(color[3] * 1e3) / 1e3;
|
|
return "rgba(" + r + "," + g + "," + b + "," + a + ")";
|
|
}
|
|
|
|
export {
|
|
NO_COLOR,
|
|
asString,
|
|
withAlpha,
|
|
rgbaToLcha,
|
|
lchaToRgba,
|
|
fromString,
|
|
asArray,
|
|
toString
|
|
};
|
|
//# sourceMappingURL=chunk-GMHZLYJW.js.map
|