wasm-vips 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/THIRD-PARTY-NOTICES.md +33 -0
- package/lib/vips-es6.js +1218 -505
- package/lib/vips-es6.worker.js +1 -1
- package/lib/vips-heif.wasm +0 -0
- package/lib/vips-jxl.wasm +0 -0
- package/lib/vips-node.js +1217 -507
- package/lib/vips-node.mjs +1216 -504
- package/lib/vips-node.worker.js +1 -1
- package/lib/vips-node.worker.mjs +1 -1
- package/lib/vips-resvg.wasm +0 -0
- package/lib/vips.d.ts +595 -187
- package/lib/vips.js +1220 -508
- package/lib/vips.wasm +0 -0
- package/lib/vips.worker.js +1 -1
- package/package.json +19 -17
- package/versions.json +21 -0
package/README.md
CHANGED
|
@@ -10,7 +10,8 @@ pipeline executes at once, streaming the image in parallel from source to
|
|
|
10
10
|
destination a section at a time. Because wasm-vips is parallel, it's quick,
|
|
11
11
|
and because it doesn't need to keep entire images in memory, it's light.
|
|
12
12
|
|
|
13
|
-
>
|
|
13
|
+
> [!NOTE]
|
|
14
|
+
> This library is still under early development. See: [#1](
|
|
14
15
|
https://github.com/kleisauke/wasm-vips/issues/1).
|
|
15
16
|
|
|
16
17
|
## Engine support
|
|
@@ -78,7 +79,7 @@ Or, if you prefer to use ES6 modules:
|
|
|
78
79
|
const vips = await Vips();
|
|
79
80
|
</script>
|
|
80
81
|
```
|
|
81
|
-
<sup>This
|
|
82
|
+
<sup>This requires support for [`import()` in workers](https://caniuse.com/mdn-javascript_operators_import_worker_support).</sup>
|
|
82
83
|
|
|
83
84
|
### Node.js
|
|
84
85
|
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Third-party notices
|
|
2
|
+
|
|
3
|
+
This software contains third-party libraries
|
|
4
|
+
used under the terms of the following licences:
|
|
5
|
+
|
|
6
|
+
| Library | Used under the terms of |
|
|
7
|
+
|---------------|-----------------------------------------------------------------------------------------------------------|
|
|
8
|
+
| aom | BSD 2-Clause + [Alliance for Open Media Patent License 1.0](https://aomedia.org/license/patent-license/) |
|
|
9
|
+
| brotli | MIT Licence |
|
|
10
|
+
| cgif | MIT Licence |
|
|
11
|
+
| expat | MIT Licence |
|
|
12
|
+
| glib | LGPLv3 |
|
|
13
|
+
| highway | Apache-2.0 License, BSD 3-Clause |
|
|
14
|
+
| lcms | MIT Licence |
|
|
15
|
+
| libexif | LGPLv3 |
|
|
16
|
+
| libffi | MIT Licence |
|
|
17
|
+
| libheif | LGPLv3 |
|
|
18
|
+
| libimagequant | [BSD 2-Clause](https://github.com/lovell/libimagequant/blob/main/COPYRIGHT) |
|
|
19
|
+
| libjxl | BSD 3-Clause |
|
|
20
|
+
| libnsgif | MIT Licence |
|
|
21
|
+
| libspng | [BSD 2-Clause, libpng License](https://github.com/randy408/libspng/blob/master/LICENSE) |
|
|
22
|
+
| libtiff | [libtiff License](https://gitlab.com/libtiff/libtiff/blob/master/LICENSE.md) (BSD-like) |
|
|
23
|
+
| libvips | LGPLv3 |
|
|
24
|
+
| libwebp | New BSD License |
|
|
25
|
+
| mozjpeg | [zlib License, IJG License, BSD-3-Clause](https://github.com/mozilla/mozjpeg/blob/master/LICENSE.md) |
|
|
26
|
+
| resvg | MPL-2.0 License |
|
|
27
|
+
| zlib-ng | [zlib Licence](https://github.com/zlib-ng/zlib-ng/blob/develop/LICENSE.md) |
|
|
28
|
+
|
|
29
|
+
Use of libraries under the terms of the LGPLv3 is via the
|
|
30
|
+
"any later version" clause of the LGPLv2 or LGPLv2.1.
|
|
31
|
+
|
|
32
|
+
Please report any errors or omissions via
|
|
33
|
+
https://github.com/kleisauke/wasm-vips/issues/new
|