@imagemagick/magick-wasm 0.0.25 → 0.0.26

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/NOTICE CHANGED
@@ -7,7 +7,10 @@ Licensed under the Apache License, Version 2.0.
7
7
 
8
8
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
9
9
 
10
- [ ImageMagick 7.1.1-22 beta (2023-12-03) ] copyright:
10
+ [ ImageMagick 7.1.1-23 (2023-12-10) ] copyright:
11
+
12
+ ImageMagick License
13
+ https://imagemagick.org/script/license.php
11
14
 
12
15
  Before we get to the text of the license, lets just review what the license says in simple terms:
13
16
 
@@ -115,7 +118,7 @@ To apply the ImageMagick License to your work, attach the following boilerplate
115
118
 
116
119
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
117
120
 
118
- [ aom 3.7.1 (2023-11-17) ] copyright:
121
+ [ aom 3.8.0 (2023-12-06) ] copyright:
119
122
 
120
123
  Copyright (c) 2016, Alliance for Open Media. All rights reserved.
121
124
 
@@ -3060,10 +3063,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3060
3063
 
3061
3064
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3062
3065
 
3063
- [ lcms 2.15.0 (2023-03-01) ] copyright:
3066
+ [ lcms 2.16.0 (2023-12-03) ] copyright:
3067
+
3068
+ MIT License
3064
3069
 
3065
- Little CMS
3066
- Copyright (c) 1998-2020 Marti Maria Saguer
3070
+ Copyright (c) 2023 Marti Maria Saguer
3067
3071
 
3068
3072
  Permission is hereby granted, free of charge, to any person obtaining
3069
3073
  a copy of this software and associated documentation files (the
@@ -3534,7 +3538,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3534
3538
 
3535
3539
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3536
3540
 
3537
- [ xml 2.12.1 (2023-11-23) ] copyright:
3541
+ [ xml 2.12.2 (2023-12-05) ] copyright:
3538
3542
 
3539
3543
  Except where otherwise noted in the source code (e.g. the files dict.c,
3540
3544
  list.c and the trio files, which are covered by a similar licence but
@@ -3562,7 +3566,7 @@ THE SOFTWARE.
3562
3566
 
3563
3567
  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3564
3568
 
3565
- [ zlib 1.2.13 (2022-10-14) ] copyright:
3569
+ [ zlib 1.3.0 (2023-08-18) ] copyright:
3566
3570
 
3567
3571
  Copyright notice:
3568
3572
 
package/README.md CHANGED
@@ -21,7 +21,7 @@ Follow me on twitter([@MagickNET](https://twitter.com/MagickNET)) to receive inf
21
21
 
22
22
  ## Release notes
23
23
 
24
- The release notes can be found on [GitHub](https://github.com/dlemstra/magick-wasm/releases/tag/0.0.25).
24
+ The release notes can be found on [GitHub](https://github.com/dlemstra/magick-wasm/releases/tag/0.0.26).
25
25
 
26
26
  ## Donate
27
27
 
package/dist/index.d.ts CHANGED
@@ -1520,7 +1520,6 @@ export declare class PixelCollection extends NativeInstance implements IPixelCol
1520
1520
  setPixel(x: number, y: number, quantumPixels: quantumArray): void;
1521
1521
  setPixel(x: number, y: number, numberPixels: number[]): void;
1522
1522
  toByteArray(x: number, y: number, width: number, height: number, mapping: string): Uint8Array | null;
1523
- private static createArray;
1524
1523
  private use;
1525
1524
  }
1526
1525
  export interface IChannelStatistics {
@@ -2065,7 +2064,7 @@ export declare class ImageMagick {
2065
2064
  static readFromCanvas<TReturnType>(canvas: HTMLCanvasElement, func: (image: IMagickImage) => TReturnType): TReturnType;
2066
2065
  static readFromCanvas<TReturnType>(canvas: HTMLCanvasElement, func: (image: IMagickImage) => Promise<TReturnType>): Promise<TReturnType>;
2067
2066
  }
2068
- export declare function initializeImageMagick(wasmLocationOrData?: string | ByteArray): Promise<void>;
2067
+ export declare function initializeImageMagick(wasmLocationOrData: URL | ByteArray): Promise<void>;
2069
2068
  export declare class MagickColors {
2070
2069
  static get None(): IMagickColor;
2071
2070
  static get Transparent(): IMagickColor;