first commit

This commit is contained in:
Ale
2025-05-13 12:01:17 +02:00
commit d7881a4461
4852 changed files with 537159 additions and 0 deletions

21
node_modules/@pdf-lib/upng/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2017 Photopea
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

143
node_modules/@pdf-lib/upng/README.md generated vendored Normal file
View File

@@ -0,0 +1,143 @@
<h1>
upng
<br />
<!-- NPM Version -->
<a href="https://www.npmjs.com/package/@pdf-lib/upng">
<img
src="https://img.shields.io/npm/v/png-ts.svg?style=flat-square"
alt="NPM Version"
/>
</a>
</h1>
> A small, fast and advanced PNG / APNG encoder and decoder
This project is a fork of [`UPNG.js`](https://github.com/photopea/UPNG.js) and was created for use in [`pdf-lib`](https://github.com/Hopding/pdf-lib). The maintainer of the original repo does not publish it to NPM. That is the primary purpose of this fork. In addition, an `index.d.ts` file has been added (copied directly from [`@types/upng-js`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/upng-js/index.d.ts)) to makes TypeScript definitions available without requiring additional packages to be installed.
## Example of `UPNG.toRGBA8`
```javascript
// Import the UPNG class
import UPNG from '@pdf-lib/upng';
// Create a UPNG object
const pngImage = UPNG.decode(/* Uint8Array containing bytes of PNG image */);
// `pixels` is a 1D array (in rgba order) of decoded pixel data
const pixels = pngImage.UPNG.toRGBA8();
```
## Installation
### NPM Module
To install the latest stable version:
```bash
# With npm
npm install --save @pdf-lib/upng
# With yarn
yarn add @pdf-lib/upng
```
This assumes you're using [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/lang/en/) as your package manager.
### UMD Module
You can also download `@pdf-lib/upng` as a UMD module from [unpkg](https://unpkg.com/#/). The UMD builds have been compiled to ES5, so they should work [in any modern browser](https://caniuse.com/#feat=es5). UMD builds are useful if you aren't using a package manager or module bundler. For example, you can use them directly in the `<script>` tag of an HTML page.
The following builds are available:
* https://unpkg.com/@pdf-lib/upng/dist/UPNG.js
* https://unpkg.com/@pdf-lib/upng/dist/UPNG.min.js
When using a UMD build, you will have access to a global `window.UPNG` variable. This variable contains the `UPNG` class exported by `@pdf-lib/upng`. For example:
```javascript
// NPM module
import UPNG from '@pdf-lib/upng';
const pngImage = UPNG.decode(/* ... */)
// UMD module
var pngImage = window.UPNG.decode(/* ... */)
```
## Encoder
UPNG.js supports APNG and the interface expects "frames". Regular PNG is just a single-frame animation (single-item array).
#### `UPNG.encode(imgs, w, h, cnum, [dels])`
* `imgs`: array of frames. A frame is an ArrayBuffer containing the pixel data (RGBA, 8 bits per channel)
* `w`, `h` : width and height of the image
* `cnum`: number of colors in the result; 0: all colors (lossless PNG)
* `dels`: array of millisecond delays for each frame (only when 2 or more frames)
* returns an ArrayBuffer with binary data of a PNG file
UPNG.js can do a lossy minification of PNG files, similar to [TinyPNG](https://tinypng.com/) and other tools. It performed quantization with [k-means algorithm](https://en.wikipedia.org/wiki/K-means_clustering) in the past, but now we use [K-d trees](https://en.wikipedia.org/wiki/K-d_tree).
Lossy compression is allowed by the last parameter `cnum`. Set it to zero for a lossless compression, or write the number of allowed colors in the image. Smaller values produce smaller files. **Or just use 0 for lossless / 256 for lossy.**
// Read RGBA from canvas and encode with UPNG
var dta = ctx.getImageData(0,0,200,300).data; // ctx is Context2D of a Canvas
// dta = new Uint8Array(200 * 300 * 4); // or generate pixels manually
var png = UPNG.encode([dta.buffer], 200, 300, 0); console.log(new Uint8Array(png));
#### `UPNG.encodeLL(imgs, w, h, cc, ac, depth, [dels])` - low-level encode
* `imgs`: array of frames. A frame is an ArrayBuffer containing the pixel data (corresponding to following parameters)
* `w`, `h` : width and height of the image
* `cc`, `ac`: number of color channels (1 or 3) and alpha channels (0 or 1)
* `depth`: bit depth of pixel data (1, 2, 4, 8, 16)
* `dels`: array of millisecond delays for each frame (only when 2 or more frames)
* returns an ArrayBuffer with binary data of a PNG file
This function does not do any optimizations, it just stores what you give it. There are two cases when it is useful:
* saving 16-bit colors (note, that PNG is big-endian, unlike Uint16Array in JS)
* your image is too large, and "expanding" to 8-bit RGBA would use too much memory (e.g. 4-bit grayscale 50,000 x 50,000 = 1.25 GB, 8-bit RGBA would be 10 GB)
## Decoder
Supports all color types (including Grayscale and Palettes), all channel depths (1, 2, 4, 8, 16), interlaced images etc. Opens PNGs which other libraries can not open (tested with [PngSuite](http://www.schaik.com/pngsuite/)).
#### `UPNG.decode(buffer)`
* `buffer`: ArrayBuffer containing the PNG file
* returns an image object with following properties:
* * `width`: the width of the image
* * `height`: the height of the image
* * `depth`: number of bits per channel
* * `ctype`: color type of the file (Truecolor, Grayscale, Palette ...)
* * `frames`: additional info about frames (frame delays etc.)
* * `tabs`: additional chunks of the PNG file
* * `data`: pixel data of the image
PNG files may have a various number of channels and a various color depth. The interpretation of `data` depends on the current color type and color depth (see the [PNG specification](https://www.w3.org/TR/PNG/)).
#### `UPNG.toRGBA8(img)`
* `img`: PNG image object (returned by UPNG.decode())
* returns an array of frames. A frame is ArrayBuffer of the image in RGBA format, 8 bits per channel.
### Example
var img = UPNG.decode(buff); // put ArrayBuffer of the PNG file into UPNG.decode
var rgba = UPNG.toRGBA8(img)[0]; // UPNG.toRGBA8 returns array of frames, size: width * height * 4 bytes.
PNG format uses the Inflate algorithm. Right now, UPNG.js calls [Pako.js](https://github.com/nodeca/pako) for the Inflate and Deflate method.
## Quantizer
UPNG.js contains a very good Quantizer of 4-component 8-bit vectors (i.e. pixels). It can be used to generate nice color palettes (e.g. Photopea uses UPNG.js to make palettes for GIF images).
Quantization consists of two important steps: Finding a nice palette and Finding the closest color in the palette for each sample (non-trivial for large palettes). UPNG perfroms both steps.
var res = UPNG.quantize(data, psize);
* `data`: ArrayBuffer of samples (byte length is a multiple of four)
* `psize` : Palette size (how many colors you want to have)
The result object "res" has following properties:
* `abuf`: ArrayBuffer corresponding to `data`, where colors are remapped by a palette
* `inds`: Uint8Array : the index of a color for each sample (only when `psize`<=256)
* `plte`: Array : the Palette - a list of colors, `plte[i].est.q` and `plte[i].est.rgba` is the color value
### FAQ
- To get one common palette for multiple images (e.g. frames of the animation), concatenate them into one array `data`.
- When working with less than four components, set the remaining components to a constant value (e.g. to zero)
- When working with transparency, premultiply color components by transparency (otherwise, rgba(1,1,1,0) would be closer to rgba(1,1,1,1) than to rgba(0,0,0,0) - transparent mapped to white instead of transparent)

1027
node_modules/@pdf-lib/upng/UPNG.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

2017
node_modules/@pdf-lib/upng/cjs/UPNG.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

7832
node_modules/@pdf-lib/upng/dist/UPNG.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

7832
node_modules/@pdf-lib/upng/dist/UPNG.min.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

88
node_modules/@pdf-lib/upng/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,88 @@
// ------------------------------------------- //
// //
// Copied from: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/upng-js/index.d.ts
// //
// ------------------------------------------- //
// Type definitions for upng-js 2.1
// Project: https://github.com/photopea/UPNG.js
// Definitions by: York Yao <https://github.com/plantain-00>, Sophie Kirschner <https://github.com/pineapplemachine>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export interface ImageFrameRect {
x: number;
y: number;
width: number;
height: number;
}
export interface ImageFrame {
rect: ImageFrameRect;
delay: number;
dispose: number;
blend: number;
}
export interface ImageTabACTL {
num_frames: number;
num_plays: number;
}
export interface ImageTabText {
[key: string]: string;
}
export interface ImageTabs {
acTL?: ImageTabACTL;
pHYs?: number[];
cHRM?: number[];
tEXt?: ImageTabText;
iTXt?: ImageTabText;
PLTE?: number[];
hIST?: number[];
tRNS?: number | number[]; // Depends on ctype
gAMA?: number;
sRGB?: number;
bKGD?: number | number[]; // Depends on ctype
}
export interface Image {
width: number;
height: number;
depth: number;
ctype: number;
frames: ImageFrame[];
tabs: ImageTabs;
data: ArrayBuffer;
}
export interface QuantizeResult {
abuf: ArrayBuffer;
inds: Uint8Array;
// Type is complicated and I am too lazy to work it out right now, sorry!
plte: any[];
}
export function encode(
imgs: ArrayBuffer[],
w: number,
h: number,
cnum: number,
dels?: number[],
): ArrayBuffer;
export function encodeLL(
imgs: ArrayBuffer[],
w: number,
h: number,
cc: number,
ac: number,
depth: number,
dels?: number[],
): ArrayBuffer;
export function decode(buffer: ArrayBuffer): Image;
export function toRGBA8(out: Image): ArrayBuffer[];
export function quantize(data: ArrayBuffer, psize: number): QuantizeResult;

54
node_modules/@pdf-lib/upng/package.json generated vendored Normal file
View File

@@ -0,0 +1,54 @@
{
"name": "@pdf-lib/upng",
"license": "MIT",
"version": "1.0.1",
"description": "Small, fast and advanced PNG / APNG encoder and decoder",
"main": "cjs/UPNG.js",
"unpkg": "dist/UPNG.min.js",
"module": "UPNG.js",
"types": "index.d.ts",
"files": [
"cjs/",
"dist/",
"UPNG.js",
"index.d.ts",
"LICENSE.md",
"package.json",
"README.md",
"yarn.lock"
],
"scripts": {
"build": "yarn build:cjs && yarn build:umd && yarn build:umd:min",
"build:cjs": "babel --plugins @babel/plugin-transform-modules-commonjs --out-dir cjs UPNG.js",
"build:umd": "rollup --config rollup.config.js --file dist/UPNG.js",
"build:umd:min": "rollup --config rollup.config.js --file dist/UPNG.min.js --environment MINIFY"
},
"repository": {
"type": "git",
"url": "https://github.com/Hopding/upng"
},
"author": "photopea (https://github.com/photopea)",
"contributors": [
"Andrew Dillon (https://github.com/Hopding)",
"Scimonster (https://github.com/Scimonster)"
],
"bugs": "https://github.com/Hopding/upng/issues",
"keywords": [
"png",
"apng",
"image",
"conversion"
],
"dependencies": {
"pako": "^1.0.10"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^1.31.1",
"rollup-plugin-terser": "^5.1.3"
}
}

1423
node_modules/@pdf-lib/upng/yarn.lock generated vendored Normal file

File diff suppressed because it is too large Load Diff