@img/sharp-libvips-dev-wasm32 1.3.0-rc.1 → 1.3.0-rc.10
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 +23 -23
- package/include/aom/aom_codec.h +1 -1
- package/include/aom/aom_decoder.h +4 -0
- package/include/aom/aom_encoder.h +19 -8
- package/include/aom/aom_ext_ratectrl.h +664 -0
- package/include/aom/aom_image.h +93 -30
- package/include/aom/aom_tpl.h +99 -0
- package/include/aom/aomcx.h +89 -16
- package/include/aom/aomdx.h +12 -0
- package/include/expat.h +15 -3
- package/include/expat_config.h +6 -6
- package/include/expat_external.h +4 -4
- package/include/glib-2.0/gio/gdbusconnection.h +2 -8
- package/include/glib-2.0/gio/gfileattribute.h +1 -1
- package/include/glib-2.0/gio/gfileinfo.h +5 -0
- package/include/glib-2.0/gio/gicon.h +1 -1
- package/include/glib-2.0/gio/gio-autocleanups.h +0 -1
- package/include/glib-2.0/gio/gio-visibility.h +34 -0
- package/include/glib-2.0/gio/gio.h +2 -0
- package/include/glib-2.0/gio/gioenums.h +66 -44
- package/include/glib-2.0/gio/gioenumtypes.h +2 -0
- package/include/glib-2.0/gio/giptosmessage.h +46 -0
- package/include/glib-2.0/gio/gipv6tclassmessage.h +46 -0
- package/include/glib-2.0/gio/gresolver.h +1 -1
- package/include/glib-2.0/gio/gsettings.h +1 -1
- package/include/glib-2.0/gio/gsocketcontrolmessage.h +2 -0
- package/include/glib-2.0/glib/gatomic.h +26 -2
- package/include/glib-2.0/glib/gfileutils.h +2 -2
- package/include/glib-2.0/glib/ghook.h +3 -1
- package/include/glib-2.0/glib/giochannel.h +1 -1
- package/include/glib-2.0/glib/gkeyfile.h +1 -1
- package/include/glib-2.0/glib/glib-visibility.h +34 -0
- package/include/glib-2.0/glib/gmacros.h +32 -0
- package/include/glib-2.0/glib/gmain.h +4 -0
- package/include/glib-2.0/glib/gmarkup.h +18 -1
- package/include/glib-2.0/glib/gmem.h +4 -4
- package/include/glib-2.0/glib/gmessages.h +7 -9
- package/include/glib-2.0/glib/gnode.h +1 -1
- package/include/glib-2.0/glib/goption.h +1 -1
- package/include/glib-2.0/glib/gsequence.h +2 -2
- package/include/glib-2.0/glib/gslice.h +12 -4
- package/include/glib-2.0/glib/gspawn.h +1 -1
- package/include/glib-2.0/glib/gstrfuncs.h +191 -1
- package/include/glib-2.0/glib/gtestutils.h +6 -3
- package/include/glib-2.0/glib/gtimer.h +1 -0
- package/include/glib-2.0/glib/guri.h +3 -3
- package/include/glib-2.0/glib/gutils.h +10 -1
- package/include/glib-2.0/glib/gvarianttype.h +16 -16
- package/include/glib-2.0/glib/gversionmacros.h +22 -0
- package/include/glib-2.0/gmodule/gmodule-visibility.h +34 -0
- package/include/glib-2.0/gmodule.h +1 -1
- package/include/glib-2.0/gobject/gbinding.h +1 -1
- package/include/glib-2.0/gobject/gobject-visibility.h +34 -0
- package/include/glib-2.0/gobject/gobject.h +1 -1
- package/include/glib-2.0/gobject/gparam.h +1 -1
- package/include/glib-2.0/gobject/gsignal.h +8 -8
- package/include/glib-2.0/gobject/gtype.h +17 -17
- package/include/hwy/aligned_allocator.h +44 -2
- package/include/hwy/auto_tune.h +22 -6
- package/include/hwy/base.h +60 -90
- package/include/hwy/bit_set.h +410 -0
- package/include/hwy/cache_control.h +3 -2
- package/include/hwy/detect_compiler_arch.h +134 -14
- package/include/hwy/detect_targets.h +82 -36
- package/include/hwy/highway.h +15 -0
- package/include/hwy/nanobenchmark.h +12 -3
- package/include/hwy/ops/arm_neon-inl.h +96 -25
- package/include/hwy/ops/arm_sve-inl.h +250 -95
- package/include/hwy/ops/emu128-inl.h +12 -7
- package/include/hwy/ops/generic_ops-inl.h +271 -131
- package/include/hwy/ops/loongarch_lasx-inl.h +31 -9
- package/include/hwy/ops/loongarch_lsx-inl.h +33 -12
- package/include/hwy/ops/ppc_vsx-inl.h +99 -19
- package/include/hwy/ops/rvv-inl.h +239 -130
- package/include/hwy/ops/scalar-inl.h +22 -7
- package/include/hwy/ops/set_macros-inl.h +163 -107
- package/include/hwy/ops/wasm_128-inl.h +13 -22
- package/include/hwy/ops/x86_128-inl.h +223 -120
- package/include/hwy/ops/x86_256-inl.h +70 -134
- package/include/hwy/ops/x86_512-inl.h +130 -134
- package/include/hwy/print-inl.h +2 -0
- package/include/hwy/profiler.h +355 -264
- package/include/hwy/robust_statistics.h +3 -1
- package/include/hwy/timer.h +44 -0
- package/include/lcms2.h +35 -5
- package/include/lcms2_plugin.h +1 -1
- package/include/libexif/exif-utils.h +1 -1
- package/include/libheif/heif.h +2 -0
- package/include/libheif/heif_aux_images.h +2 -2
- package/include/libheif/heif_brands.h +16 -4
- package/include/libheif/heif_color.h +147 -25
- package/include/libheif/heif_components.h +264 -0
- package/include/libheif/heif_context.h +18 -4
- package/include/libheif/heif_cxx.h +20 -18
- package/include/libheif/heif_decoding.h +63 -9
- package/include/libheif/heif_encoding.h +46 -12
- package/include/libheif/heif_error.h +15 -6
- package/include/libheif/heif_export.h +48 -0
- package/include/libheif/heif_image.h +94 -32
- package/include/libheif/heif_image_handle.h +54 -3
- package/include/libheif/heif_items.h +25 -2
- package/include/libheif/heif_library.h +13 -18
- package/include/libheif/heif_metadata.h +5 -2
- package/include/libheif/heif_omaf.h +104 -0
- package/include/libheif/heif_plugin.h +80 -13
- package/include/libheif/heif_properties.h +259 -5
- package/include/libheif/heif_regions.h +5 -3
- package/include/libheif/heif_security.h +24 -2
- package/include/libheif/heif_sequences.h +163 -14
- package/include/libheif/heif_text.h +161 -0
- package/include/libheif/heif_tiling.h +2 -2
- package/include/libheif/heif_uncompressed.h +29 -5
- package/include/libheif/heif_version.h +2 -2
- package/include/libpng16/png.h +637 -488
- package/include/libpng16/pngconf.h +2 -2
- package/include/libpng16/pnglibconf.h +2 -2
- package/include/png.h +637 -488
- package/include/pngconf.h +2 -2
- package/include/pnglibconf.h +2 -2
- package/include/resvg.h +3 -3
- package/include/tiffconf.h +9 -10
- package/include/tiffio.h +10 -9
- package/include/tiffvers.h +1 -1
- package/include/ultrahdr_api.h +5 -11
- package/include/vips/colour.h +2 -2
- package/include/vips/memory.h +1 -1
- package/include/vips/version.h +4 -4
- package/include/zlib.h +3 -3
- package/lib/glib-2.0/include/glibconfig.h +1 -3
- package/lib/libaom.a +0 -0
- package/lib/libcgif.a +0 -0
- package/lib/libexif.a +0 -0
- package/lib/libexif.la +1 -1
- package/lib/libexpat.a +0 -0
- package/lib/libexpat.la +2 -2
- package/lib/libffi.a +0 -0
- package/lib/libgio-2.0.a +0 -0
- package/lib/libglib-2.0.a +0 -0
- package/lib/libgmodule-2.0.a +0 -0
- package/lib/libgobject-2.0.a +0 -0
- package/lib/libgthread-2.0.a +0 -0
- package/lib/libheif.a +0 -0
- package/lib/libhwy.a +0 -0
- package/lib/libimagequant.a +0 -0
- package/lib/libjpeg.a +0 -0
- package/lib/liblcms2.a +0 -0
- package/lib/libpng.a +0 -0
- package/lib/libpng.la +2 -2
- package/lib/libpng16.a +0 -0
- package/lib/libpng16.la +2 -2
- package/lib/libresvg.a +0 -0
- package/lib/libsharpyuv.a +0 -0
- package/lib/libtiff.a +0 -0
- package/lib/libuhdr.a +0 -0
- package/lib/libvips-cpp.a +0 -0
- package/lib/libvips.a +0 -0
- package/lib/libwebp.a +0 -0
- package/lib/libwebpdecoder.a +0 -0
- package/lib/libwebpdemux.a +0 -0
- package/lib/libwebpmux.a +0 -0
- package/lib/libz.a +0 -0
- package/lib/pkgconfig/aom.pc +2 -2
- package/lib/pkgconfig/cgif.pc +1 -1
- package/lib/pkgconfig/expat.pc +1 -1
- package/lib/pkgconfig/gio-2.0.pc +1 -1
- package/lib/pkgconfig/glib-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
- package/lib/pkgconfig/gobject-2.0.pc +1 -1
- package/lib/pkgconfig/gthread-2.0.pc +1 -1
- package/lib/pkgconfig/lcms2.pc +1 -1
- package/lib/pkgconfig/libexif.pc +1 -1
- package/lib/pkgconfig/libheif.pc +1 -1
- package/lib/pkgconfig/libhwy.pc +3 -4
- package/lib/pkgconfig/libpng.pc +1 -1
- package/lib/pkgconfig/libpng16.pc +1 -1
- package/lib/pkgconfig/libsharpyuv.pc +1 -1
- package/lib/pkgconfig/libtiff-4.pc +2 -2
- package/lib/pkgconfig/libwebp.pc +1 -1
- package/lib/pkgconfig/libwebpdecoder.pc +11 -0
- package/lib/pkgconfig/libwebpmux.pc +1 -1
- package/lib/pkgconfig/vips-cpp.pc +1 -1
- package/lib/pkgconfig/vips.pc +1 -1
- package/package.json +1 -1
- package/versions.json +15 -15
- package/lib/libsharpyuv.la +0 -41
- package/lib/libtiff.la +0 -41
- package/lib/libwebp.la +0 -41
- package/lib/libwebpdemux.la +0 -41
- package/lib/libwebpmux.la +0 -41
package/include/pngconf.h
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* pngconf.h - machine-configurable file for libpng
|
|
2
2
|
*
|
|
3
|
-
* libpng version 1.6.
|
|
3
|
+
* libpng version 1.6.58
|
|
4
4
|
*
|
|
5
|
-
* Copyright (c) 2018-
|
|
5
|
+
* Copyright (c) 2018-2026 Cosmin Truta
|
|
6
6
|
* Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson
|
|
7
7
|
* Copyright (c) 1996-1997 Andreas Dilger
|
|
8
8
|
* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
|
package/include/pnglibconf.h
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* pnglibconf.h - library build configuration */
|
|
2
2
|
|
|
3
|
-
/* libpng version 1.6.
|
|
3
|
+
/* libpng version 1.6.58 */
|
|
4
4
|
|
|
5
|
-
/* Copyright (c) 2018-
|
|
5
|
+
/* Copyright (c) 2018-2026 Cosmin Truta */
|
|
6
6
|
/* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson */
|
|
7
7
|
|
|
8
8
|
/* This code is released under the libpng license. */
|
package/include/resvg.h
CHANGED
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
#include <stdint.h>
|
|
15
15
|
|
|
16
16
|
#define RESVG_MAJOR_VERSION 0
|
|
17
|
-
#define RESVG_MINOR_VERSION
|
|
18
|
-
#define RESVG_PATCH_VERSION
|
|
19
|
-
#define RESVG_VERSION "0.
|
|
17
|
+
#define RESVG_MINOR_VERSION 47
|
|
18
|
+
#define RESVG_PATCH_VERSION 0
|
|
19
|
+
#define RESVG_VERSION "0.47.0"
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* @brief List of possible errors.
|
package/include/tiffconf.h
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* libtiff/tiffconf.h. Generated from tiffconf.h.in by configure. */
|
|
2
1
|
/*
|
|
3
2
|
Configuration defines for installed libtiff.
|
|
4
3
|
This file maintained for backward compatibility. Do not use definitions
|
|
@@ -7,7 +6,7 @@
|
|
|
7
6
|
|
|
8
7
|
/* clang-format off */
|
|
9
8
|
/* clang-format disabled because CMake scripts are very sensitive to the
|
|
10
|
-
* formatting of this file. configure_file variables of type "
|
|
9
|
+
* formatting of this file. configure_file variables of type "" are
|
|
11
10
|
* modified by clang-format and won't be substituted.
|
|
12
11
|
*/
|
|
13
12
|
|
|
@@ -21,28 +20,28 @@
|
|
|
21
20
|
|
|
22
21
|
|
|
23
22
|
/* Signed 16-bit type */
|
|
24
|
-
|
|
23
|
+
#define TIFF_INT16_T int16_t
|
|
25
24
|
|
|
26
25
|
/* Signed 32-bit type */
|
|
27
|
-
|
|
26
|
+
#define TIFF_INT32_T int32_t
|
|
28
27
|
|
|
29
28
|
/* Signed 64-bit type */
|
|
30
|
-
|
|
29
|
+
#define TIFF_INT64_T int64_t
|
|
31
30
|
|
|
32
31
|
/* Signed 8-bit type */
|
|
33
|
-
|
|
32
|
+
#define TIFF_INT8_T int8_t
|
|
34
33
|
|
|
35
34
|
/* Unsigned 16-bit type */
|
|
36
|
-
|
|
35
|
+
#define TIFF_UINT16_T uint16_t
|
|
37
36
|
|
|
38
37
|
/* Unsigned 32-bit type */
|
|
39
|
-
|
|
38
|
+
#define TIFF_UINT32_T uint32_t
|
|
40
39
|
|
|
41
40
|
/* Unsigned 64-bit type */
|
|
42
|
-
|
|
41
|
+
#define TIFF_UINT64_T uint64_t
|
|
43
42
|
|
|
44
43
|
/* Unsigned 8-bit type */
|
|
45
|
-
|
|
44
|
+
#define TIFF_UINT8_T uint8_t
|
|
46
45
|
|
|
47
46
|
/* Signed size type */
|
|
48
47
|
#define TIFF_SSIZE_T int32_t
|
package/include/tiffio.h
CHANGED
|
@@ -125,13 +125,13 @@ typedef void *thandle_t; /* client data handle */
|
|
|
125
125
|
*/
|
|
126
126
|
|
|
127
127
|
/* reference white */
|
|
128
|
-
#define D65_X0 (95.
|
|
129
|
-
#define D65_Y0 (100.
|
|
130
|
-
#define D65_Z0 (108.
|
|
128
|
+
#define D65_X0 (95.0470f)
|
|
129
|
+
#define D65_Y0 (100.0f)
|
|
130
|
+
#define D65_Z0 (108.8827f)
|
|
131
131
|
|
|
132
|
-
#define D50_X0 (96.
|
|
133
|
-
#define D50_Y0 (100.
|
|
134
|
-
#define D50_Z0 (82.
|
|
132
|
+
#define D50_X0 (96.4250f)
|
|
133
|
+
#define D50_Y0 (100.0f)
|
|
134
|
+
#define D50_Z0 (82.4680f)
|
|
135
135
|
|
|
136
136
|
/* Structure for holding information about a display device. */
|
|
137
137
|
|
|
@@ -254,7 +254,7 @@ struct _TIFFRGBAImage
|
|
|
254
254
|
* Macros for extracting components from the
|
|
255
255
|
* packed ABGR form returned by TIFFReadRGBAImage.
|
|
256
256
|
*/
|
|
257
|
-
#define TIFFGetR(abgr) ((abgr)&0xff)
|
|
257
|
+
#define TIFFGetR(abgr) ((abgr) & 0xff)
|
|
258
258
|
#define TIFFGetG(abgr) (((abgr) >> 8) & 0xff)
|
|
259
259
|
#define TIFFGetB(abgr) (((abgr) >> 16) & 0xff)
|
|
260
260
|
#define TIFFGetA(abgr) (((abgr) >> 24) & 0xff)
|
|
@@ -269,7 +269,7 @@ struct _TIFFRGBAImage
|
|
|
269
269
|
typedef int (*TIFFInitMethod)(TIFF *, int);
|
|
270
270
|
typedef struct
|
|
271
271
|
{
|
|
272
|
-
char *name;
|
|
272
|
+
const char *name;
|
|
273
273
|
uint16_t scheme;
|
|
274
274
|
TIFFInitMethod init;
|
|
275
275
|
} TIFFCodec;
|
|
@@ -584,6 +584,7 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
|
|
|
584
584
|
tmsize_t cc);
|
|
585
585
|
extern tmsize_t TIFFWriteRawTile(TIFF *tif, uint32_t tile, void *data,
|
|
586
586
|
tmsize_t cc);
|
|
587
|
+
extern uint64_t TIFFGetMaxCompressionRatio(TIFF *tif);
|
|
587
588
|
extern int TIFFDataWidth(
|
|
588
589
|
TIFFDataType); /* table of tag datatype widths within TIFF file. */
|
|
589
590
|
extern void TIFFSetWriteOffset(TIFF *tif, toff_t off);
|
|
@@ -659,7 +660,7 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
|
|
|
659
660
|
unsigned short field_bit; /* bit in fieldsset bit vector */
|
|
660
661
|
unsigned char field_oktochange; /* if true, can change while writing */
|
|
661
662
|
unsigned char field_passcount; /* if true, pass dir count on set */
|
|
662
|
-
char *field_name;
|
|
663
|
+
const char *field_name; /* ASCII name */
|
|
663
664
|
} TIFFFieldInfo;
|
|
664
665
|
|
|
665
666
|
extern int TIFFMergeFieldInfo(TIFF *, const TIFFFieldInfo[], uint32_t);
|
package/include/tiffvers.h
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
/* clang-format disabled because FindTIFF.cmake is very sensitive to the
|
|
7
7
|
* formatting of below line being a single line.
|
|
8
|
-
* Furthermore, configure_file variables of type "
|
|
8
|
+
* Furthermore, configure_file variables of type "" are
|
|
9
9
|
* modified by clang-format and won't be substituted by CMake.
|
|
10
10
|
*/
|
|
11
11
|
#define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.7.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
|
package/include/ultrahdr_api.h
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* Copyright 2024 The Android Open Source Project
|
|
3
3
|
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
5
|
+
* https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
6
|
+
* <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
|
|
7
|
+
* option. This file may not be copied, modified, or distributed
|
|
8
|
+
* except according to those terms.
|
|
15
9
|
*/
|
|
16
10
|
|
|
17
11
|
/** \file ultrahdr_api.h
|
package/include/vips/colour.h
CHANGED
|
@@ -217,8 +217,8 @@ int vips_Oklab2Oklch(VipsImage *in, VipsImage **out, ...)
|
|
|
217
217
|
G_GNUC_NULL_TERMINATED;
|
|
218
218
|
|
|
219
219
|
VIPS_API
|
|
220
|
-
int vips_uhdr2scRGB(VipsImage *in, VipsImage **out, ...)
|
|
221
|
-
G_GNUC_NULL_TERMINATED
|
|
220
|
+
int vips_uhdr2scRGB(VipsImage *in, VipsImage **out, ...)
|
|
221
|
+
G_GNUC_NULL_TERMINATED;
|
|
222
222
|
|
|
223
223
|
VIPS_API
|
|
224
224
|
int vips_profile_load(const char *name, VipsBlob **profile, ...)
|
package/include/vips/memory.h
CHANGED
package/include/vips/version.h
CHANGED
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
#ifndef VIPS_VERSION_H
|
|
5
5
|
#define VIPS_VERSION_H
|
|
6
6
|
|
|
7
|
-
#define VIPS_VERSION "8.18.
|
|
8
|
-
#define VIPS_VERSION_STRING "8.18.
|
|
7
|
+
#define VIPS_VERSION "8.18.3"
|
|
8
|
+
#define VIPS_VERSION_STRING "8.18.3"
|
|
9
9
|
#define VIPS_MAJOR_VERSION (8)
|
|
10
10
|
#define VIPS_MINOR_VERSION (18)
|
|
11
|
-
#define VIPS_MICRO_VERSION (
|
|
11
|
+
#define VIPS_MICRO_VERSION (3)
|
|
12
12
|
|
|
13
13
|
/* The ABI version, as used for library versioning.
|
|
14
14
|
*/
|
|
15
15
|
#define VIPS_LIBRARY_CURRENT (62)
|
|
16
|
-
#define VIPS_LIBRARY_REVISION (
|
|
16
|
+
#define VIPS_LIBRARY_REVISION (3)
|
|
17
17
|
#define VIPS_LIBRARY_AGE (20)
|
|
18
18
|
|
|
19
19
|
#define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: true\nenable Analyze7 load: true\nenable PPM load/save: true\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nUHDR load/save with libuhdr: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with libpng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg or resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nRAW load with libraw: false\nMagick load/save with MagickCore: false (dynamic module: false)"
|
package/include/zlib.h
CHANGED
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
extern "C" {
|
|
50
50
|
#endif
|
|
51
51
|
|
|
52
|
-
#define ZLIBNG_VERSION "2.3.
|
|
53
|
-
#define ZLIBNG_VERNUM
|
|
52
|
+
#define ZLIBNG_VERSION "2.3.3"
|
|
53
|
+
#define ZLIBNG_VERNUM 0x020303F0L /* MMNNRRSM: major minor revision status modified */
|
|
54
54
|
#define ZLIBNG_VER_MAJOR 2
|
|
55
55
|
#define ZLIBNG_VER_MINOR 3
|
|
56
|
-
#define ZLIBNG_VER_REVISION
|
|
56
|
+
#define ZLIBNG_VER_REVISION 3
|
|
57
57
|
#define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
|
|
58
58
|
#define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-9=beta, A-E=Release Candidate, F=Release */
|
|
59
59
|
#define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
|
|
@@ -17,8 +17,6 @@
|
|
|
17
17
|
#define GIO_STATIC_COMPILATION 1
|
|
18
18
|
#define GMODULE_STATIC_COMPILATION 1
|
|
19
19
|
#define GI_STATIC_COMPILATION 1
|
|
20
|
-
#define G_INTL_STATIC_COMPILATION 1
|
|
21
|
-
#define FFI_STATIC_BUILD 1
|
|
22
20
|
|
|
23
21
|
/* Specifies that GLib's g_print*() functions wrap the
|
|
24
22
|
* system printf functions. This is useful to know, for example,
|
|
@@ -114,7 +112,7 @@ typedef unsigned int guintptr;
|
|
|
114
112
|
#define G_GUINTPTR_FORMAT "u"
|
|
115
113
|
|
|
116
114
|
#define GLIB_MAJOR_VERSION 2
|
|
117
|
-
#define GLIB_MINOR_VERSION
|
|
115
|
+
#define GLIB_MINOR_VERSION 89
|
|
118
116
|
#define GLIB_MICRO_VERSION 0
|
|
119
117
|
|
|
120
118
|
#define G_OS_UNIX
|
package/lib/libaom.a
CHANGED
|
Binary file
|
package/lib/libcgif.a
CHANGED
|
Binary file
|
package/lib/libexif.a
CHANGED
|
Binary file
|
package/lib/libexif.la
CHANGED
package/lib/libexpat.a
CHANGED
|
Binary file
|
package/lib/libexpat.la
CHANGED
package/lib/libffi.a
CHANGED
|
Binary file
|
package/lib/libgio-2.0.a
CHANGED
|
Binary file
|
package/lib/libglib-2.0.a
CHANGED
|
Binary file
|
package/lib/libgmodule-2.0.a
CHANGED
|
Binary file
|
package/lib/libgobject-2.0.a
CHANGED
|
Binary file
|
package/lib/libgthread-2.0.a
CHANGED
|
Binary file
|
package/lib/libheif.a
CHANGED
|
Binary file
|
package/lib/libhwy.a
CHANGED
|
Binary file
|
package/lib/libimagequant.a
CHANGED
|
Binary file
|
package/lib/libjpeg.a
CHANGED
|
Binary file
|
package/lib/liblcms2.a
CHANGED
|
Binary file
|
package/lib/libpng.a
CHANGED
|
Binary file
|
package/lib/libpng.la
CHANGED
package/lib/libpng16.a
CHANGED
|
Binary file
|
package/lib/libpng16.la
CHANGED
package/lib/libresvg.a
CHANGED
|
Binary file
|
package/lib/libsharpyuv.a
CHANGED
|
Binary file
|
package/lib/libtiff.a
CHANGED
|
Binary file
|
package/lib/libuhdr.a
CHANGED
|
Binary file
|
package/lib/libvips-cpp.a
CHANGED
|
Binary file
|
package/lib/libvips.a
CHANGED
|
Binary file
|
package/lib/libwebp.a
CHANGED
|
Binary file
|
|
Binary file
|
package/lib/libwebpdemux.a
CHANGED
|
Binary file
|
package/lib/libwebpmux.a
CHANGED
|
Binary file
|
package/lib/libz.a
CHANGED
|
Binary file
|
package/lib/pkgconfig/aom.pc
CHANGED
|
@@ -5,8 +5,8 @@ includedir=${prefix}/include
|
|
|
5
5
|
libdir=${exec_prefix}/lib
|
|
6
6
|
|
|
7
7
|
Name: aom
|
|
8
|
-
Description: Alliance for Open Media AV1 codec library v3.
|
|
9
|
-
Version: 3.
|
|
8
|
+
Description: Alliance for Open Media AV1 codec library v3.14.1.
|
|
9
|
+
Version: 3.14.1
|
|
10
10
|
Requires:
|
|
11
11
|
Conflicts:
|
|
12
12
|
Libs: -L${libdir} -laom
|
package/lib/pkgconfig/cgif.pc
CHANGED
package/lib/pkgconfig/expat.pc
CHANGED
package/lib/pkgconfig/gio-2.0.pc
CHANGED
|
@@ -11,6 +11,6 @@ glib_valgrind_suppressions=${datadir}/glib-2.0/valgrind/glib.supp
|
|
|
11
11
|
|
|
12
12
|
Name: GLib
|
|
13
13
|
Description: C Utility Library
|
|
14
|
-
Version: 2.
|
|
14
|
+
Version: 2.89.0
|
|
15
15
|
Libs: -L${libdir} -lglib-2.0 -lm -pthread
|
|
16
16
|
Cflags: -I${includedir}/glib-2.0 -pthread -I${libdir}/glib-2.0/include
|
package/lib/pkgconfig/lcms2.pc
CHANGED
package/lib/pkgconfig/libexif.pc
CHANGED
package/lib/pkgconfig/libheif.pc
CHANGED
package/lib/pkgconfig/libhwy.pc
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
prefix=/src/build/target
|
|
2
|
-
exec_prefix=${prefix}
|
|
3
|
-
libdir=${exec_prefix}/lib
|
|
4
2
|
includedir=${prefix}/include
|
|
3
|
+
libdir=${prefix}/lib
|
|
5
4
|
|
|
6
5
|
Name: libhwy
|
|
7
6
|
Description: Efficient and performance-portable SIMD wrapper
|
|
8
|
-
Version: 1.
|
|
7
|
+
Version: 1.4.0
|
|
9
8
|
Libs: -L${libdir} -lhwy
|
|
10
|
-
Cflags: -I${includedir}
|
|
9
|
+
Cflags: -I${includedir}
|
package/lib/pkgconfig/libpng.pc
CHANGED
|
@@ -7,6 +7,6 @@ Name: libtiff
|
|
|
7
7
|
Description: Tag Image File Format (TIFF) library.
|
|
8
8
|
Version: 4.7.1
|
|
9
9
|
Libs: -L${libdir} -ltiff
|
|
10
|
-
Libs.private:
|
|
10
|
+
Libs.private:
|
|
11
11
|
Cflags: -I${includedir}
|
|
12
|
-
Requires.private:
|
|
12
|
+
Requires.private: zlib libjpeg libwebp
|
package/lib/pkgconfig/libwebp.pc
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
prefix=/src/build/target
|
|
2
|
+
exec_prefix=${prefix}
|
|
3
|
+
libdir=${exec_prefix}/lib
|
|
4
|
+
includedir=${prefix}/include
|
|
5
|
+
|
|
6
|
+
Name: libwebpdecoder
|
|
7
|
+
Description: Library for the WebP graphics format (decode only)
|
|
8
|
+
Version: 1.6.0
|
|
9
|
+
Cflags: -I${includedir}
|
|
10
|
+
Libs: -L${libdir} -lwebpdecoder
|
|
11
|
+
Libs.private:
|
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips-cpp
|
|
6
6
|
Description: C++ API for vips8 image processing library
|
|
7
|
-
Version: 8.18.
|
|
7
|
+
Version: 8.18.3
|
|
8
8
|
Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
|
|
9
9
|
Libs: -L${libdir} -lvips-cpp -lresvg -pthread -lm
|
|
10
10
|
Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
|
package/lib/pkgconfig/vips.pc
CHANGED
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips
|
|
6
6
|
Description: Image processing library
|
|
7
|
-
Version: 8.18.
|
|
7
|
+
Version: 8.18.3
|
|
8
8
|
Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
|
|
9
9
|
Libs: -L${libdir} -lvips -lresvg -pthread -lm
|
|
10
10
|
Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev-wasm32",
|
|
3
|
-
"version": "1.3.0-rc.
|
|
3
|
+
"version": "1.3.0-rc.10",
|
|
4
4
|
"description": "Header files and static wasm32 libraries for libvips and dependencies to build sharp as wasm32",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|