@img/sharp-libvips-dev-wasm32 1.2.0-rc.3 → 1.2.0-rc.4

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.
Files changed (50) hide show
  1. package/include/ffi.h +20 -2
  2. package/include/glib-2.0/glib/gmarkup.h +4 -0
  3. package/include/libheif/heif.h +16 -2603
  4. package/include/libheif/heif_aux_images.h +182 -0
  5. package/include/libheif/heif_brands.h +373 -0
  6. package/include/libheif/heif_color.h +357 -0
  7. package/include/libheif/heif_context.h +329 -0
  8. package/include/libheif/heif_cxx.h +6 -6
  9. package/include/libheif/heif_decoding.h +162 -0
  10. package/include/libheif/heif_encoding.h +391 -0
  11. package/include/libheif/heif_entity_groups.h +60 -0
  12. package/include/libheif/heif_error.h +302 -0
  13. package/include/libheif/heif_image.h +352 -0
  14. package/include/libheif/heif_image_handle.h +120 -0
  15. package/include/libheif/heif_items.h +45 -45
  16. package/include/libheif/heif_library.h +216 -0
  17. package/include/libheif/heif_metadata.h +133 -0
  18. package/include/libheif/heif_plugin.h +53 -41
  19. package/include/libheif/heif_properties.h +73 -36
  20. package/include/libheif/heif_regions.h +95 -95
  21. package/include/libheif/heif_security.h +102 -0
  22. package/include/libheif/heif_sequences.h +577 -0
  23. package/include/libheif/heif_tai_timestamps.h +202 -0
  24. package/include/libheif/heif_tiling.h +137 -0
  25. package/include/libheif/heif_uncompressed.h +109 -0
  26. package/include/libheif/heif_version.h +2 -2
  27. package/include/vips/version.h +4 -4
  28. package/lib/glib-2.0/include/glibconfig.h +1 -1
  29. package/lib/libffi.a +0 -0
  30. package/lib/libffi.la +4 -4
  31. package/lib/libgio-2.0.a +0 -0
  32. package/lib/libglib-2.0.a +0 -0
  33. package/lib/libgobject-2.0.a +0 -0
  34. package/lib/libheif.a +0 -0
  35. package/lib/libjpeg.a +0 -0
  36. package/lib/libresvg.a +0 -0
  37. package/lib/libvips.a +0 -0
  38. package/lib/pkgconfig/gio-2.0.pc +1 -1
  39. package/lib/pkgconfig/glib-2.0.pc +1 -1
  40. package/lib/pkgconfig/gmodule-2.0.pc +1 -1
  41. package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
  42. package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
  43. package/lib/pkgconfig/gobject-2.0.pc +1 -1
  44. package/lib/pkgconfig/gthread-2.0.pc +1 -1
  45. package/lib/pkgconfig/libffi.pc +1 -1
  46. package/lib/pkgconfig/libheif.pc +1 -1
  47. package/lib/pkgconfig/vips-cpp.pc +1 -1
  48. package/lib/pkgconfig/vips.pc +1 -1
  49. package/package.json +1 -1
  50. package/versions.json +4 -4
@@ -0,0 +1,202 @@
1
+ /*
2
+ * HEIF codec.
3
+ * Copyright (c) 2025 Dirk Farin <dirk.farin@gmail.com>
4
+ *
5
+ * This file is part of libheif.
6
+ *
7
+ * libheif is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Lesser General Public License as
9
+ * published by the Free Software Foundation, either version 3 of
10
+ * the License, or (at your option) any later version.
11
+ *
12
+ * libheif is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU Lesser General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU Lesser General Public License
18
+ * along with libheif. If not, see <http://www.gnu.org/licenses/>.
19
+ */
20
+
21
+ #ifndef LIBHEIF_HEIF_TAI_TIMESTAMPS_H
22
+ #define LIBHEIF_HEIF_TAI_TIMESTAMPS_H
23
+
24
+ #include <libheif/heif.h>
25
+
26
+ #ifdef __cplusplus
27
+ extern "C" {
28
+ #endif
29
+
30
+ typedef struct heif_tai_clock_info
31
+ {
32
+ uint8_t version;
33
+
34
+ // --- version 1
35
+
36
+ // Standard deviation for timestamp generation process.
37
+ // May be `heif_tai_clock_info_time_uncertainty_unknown` if unknown.
38
+ uint64_t time_uncertainty;
39
+
40
+ // Receptor clock resolution in nanoseconds.
41
+ uint32_t clock_resolution;
42
+
43
+ // Clock drift rate in picoseconds/second when synchronization is stopped.
44
+ // Maybe `heif_tai_clock_info_clock_drift_rate_unknown` if unknown.
45
+ int32_t clock_drift_rate;
46
+
47
+ // Whether clock is synchronized to an atomic source,
48
+ // see the clock_type defines below.
49
+ uint8_t clock_type;
50
+ } heif_tai_clock_info;
51
+
52
+ #define heif_tai_clock_info_time_uncertainty_unknown UINT64_C(0xFFFFFFFFFFFFFFFF)
53
+ #define heif_tai_clock_info_clock_drift_rate_unknown INT32_C(0x7FFFFFFF)
54
+ #define heif_tai_clock_info_clock_type_unknown 0
55
+ #define heif_tai_clock_info_clock_type_not_synchronized_to_atomic_source 1
56
+ #define heif_tai_clock_info_clock_type_synchronized_to_atomic_source 2
57
+
58
+
59
+ /**
60
+ * Allocate a new heif_tai_clock_info object and initialize with default values.
61
+ */
62
+ LIBHEIF_API
63
+ heif_tai_clock_info* heif_tai_clock_info_alloc(void);
64
+
65
+ /**
66
+ * Copies the source object into the destination object.
67
+ * Only the fields that are present in both objects are copied.
68
+ * The version property has to be set in both structs.
69
+ */
70
+ LIBHEIF_API
71
+ void heif_tai_clock_info_copy(heif_tai_clock_info* dst, const heif_tai_clock_info* src);
72
+
73
+ LIBHEIF_API
74
+ void heif_tai_clock_info_release(heif_tai_clock_info* clock_info);
75
+
76
+
77
+ typedef struct heif_tai_timestamp_packet
78
+ {
79
+ uint8_t version;
80
+
81
+ // --- version 1
82
+
83
+ // number of nanoseconds since TAI epoch (1958-01-01T00:00:00.0)
84
+ uint64_t tai_timestamp;
85
+
86
+ // whether the remote and receiptor clocks are in sync
87
+ uint8_t synchronization_state; // bool
88
+
89
+ // whether the receptor clock failed to generate a timestamp
90
+ uint8_t timestamp_generation_failure; // bool
91
+
92
+ // whether the original clock value has been modified
93
+ uint8_t timestamp_is_modified; // bool
94
+ } heif_tai_timestamp_packet;
95
+
96
+ /**
97
+ * Allocate a new heif_tai_timestamp_packet object and initialize with default values.
98
+ */
99
+ LIBHEIF_API
100
+ heif_tai_timestamp_packet* heif_tai_timestamp_packet_alloc(void);
101
+
102
+ /**
103
+ * Copies the source object into the destination object.
104
+ * Only the fields that are present in both objects are copied.
105
+ * The version property has to be set in both structs.
106
+ */
107
+ LIBHEIF_API
108
+ void heif_tai_timestamp_packet_copy(heif_tai_timestamp_packet* dst, const heif_tai_timestamp_packet* src);
109
+
110
+ LIBHEIF_API
111
+ void heif_tai_timestamp_packet_release(heif_tai_timestamp_packet*);
112
+
113
+
114
+
115
+ /**
116
+ * Creates a new clock info property if it doesn't exist yet.
117
+ * You can only add one tai_clock_info to an image.
118
+ *
119
+ * @param clock_info The TAI clock info to set for the item. This object will be copied.
120
+ * @param out_optional_propertyId Output parameter for the property ID of the tai_clock_info.
121
+ * This parameter may be NULL if the info is not required.
122
+ */
123
+ LIBHEIF_API
124
+ heif_error heif_item_set_property_tai_clock_info(heif_context* ctx,
125
+ heif_item_id itemId,
126
+ const heif_tai_clock_info* clock_info,
127
+ heif_property_id* out_optional_propertyId);
128
+
129
+ /**
130
+ * Get the heif_tai_clock_info attached to the item.
131
+ * This function allocates a new heif_tai_clock_info and returns it through out_clock.
132
+ *
133
+ * @param out_clock This parameter must not be nullptr. The object returned through this parameter must
134
+ * be released with heif_tai_clock_info_release().
135
+ * If no tai_clock_info property exists for the item, out_clock is set to NULL and
136
+ * no error is returned.
137
+ */
138
+ LIBHEIF_API
139
+ heif_error heif_item_get_property_tai_clock_info(const heif_context* ctx,
140
+ heif_item_id itemId,
141
+ heif_tai_clock_info** out_clock);
142
+
143
+
144
+ /**
145
+ * Creates a new TAI timestamp property if it doesn't exist yet.
146
+ * You can only add one tai_timestamp to an image.
147
+ *
148
+ * @param timestamp The TAI timestamp to set for the item. This object will be copied.
149
+ * @param out_optional_propertyId Output parameter for the property ID of the TAI timestamp.
150
+ * This parameter may be NULL if the info is not required.
151
+ */
152
+ LIBHEIF_API
153
+ heif_error heif_item_set_property_tai_timestamp(heif_context* ctx,
154
+ heif_item_id itemId,
155
+ const heif_tai_timestamp_packet* timestamp,
156
+ heif_property_id* out_optional_propertyId);
157
+
158
+ /**
159
+ * Get the heif_tai_timestamp_packet attached to the item.
160
+ * This function allocates a new heif_tai_timestamp_packet and returns it through out_timestamp.
161
+ *
162
+ * @param out_timestamp This parameter must not be NULL. The object returned through this parameter must
163
+ * be released with heif_tai_timestamp_packet_release().
164
+ * If no tai_timestamp_packet property exists for the item, *out_timestamp is set to NULL and
165
+ * no error is returned.
166
+ */
167
+ LIBHEIF_API
168
+ heif_error heif_item_get_property_tai_timestamp(const heif_context* ctx,
169
+ heif_item_id itemId,
170
+ heif_tai_timestamp_packet** out_timestamp);
171
+
172
+ /**
173
+ * Attach a TAI timestamp to the image.
174
+ * The main use of this function is for image sequences, but it can also be used for still images.
175
+ * If used for still images, note that you also have to set the heif_tai_clock_info to the image item
176
+ * through heif_item_set_property_tai_clock_info().
177
+ *
178
+ * @param timestamp The TAI timestamp to set to the image. This object will be copied.
179
+ */
180
+ LIBHEIF_API
181
+ heif_error heif_image_set_tai_timestamp(heif_image* img,
182
+ const heif_tai_timestamp_packet* timestamp);
183
+
184
+ /**
185
+ * Get the heif_tai_timestamp_packet attached to the image.
186
+ * The main use of this function is for image sequences, but it can also be used for still images.
187
+ * This function allocates a new heif_tai_timestamp_packet and returns it through out_timestamp.
188
+ *
189
+ * @param out_timestamp This parameter must not be NULL. The object returned through this parameter must
190
+ * be released with heif_tai_timestamp_packet_release().
191
+ * If no tai_timestamp_packet property exists for the image, *out_timestamp is set to NULL and
192
+ * no error is returned.
193
+ */
194
+ LIBHEIF_API
195
+ heif_error heif_image_get_tai_timestamp(const heif_image* img,
196
+ heif_tai_timestamp_packet** out_timestamp);
197
+
198
+ #ifdef __cplusplus
199
+ }
200
+ #endif
201
+
202
+ #endif //LIBHEIF_HEIF_TAI_TIMESTAMPS_H
@@ -0,0 +1,137 @@
1
+ /*
2
+ * HEIF codec.
3
+ * Copyright (c) 2017-2025 Dirk Farin <dirk.farin@gmail.com>
4
+ *
5
+ * This file is part of libheif.
6
+ *
7
+ * libheif is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Lesser General Public License as
9
+ * published by the Free Software Foundation, either version 3 of
10
+ * the License, or (at your option) any later version.
11
+ *
12
+ * libheif is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU Lesser General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU Lesser General Public License
18
+ * along with libheif. If not, see <http://www.gnu.org/licenses/>.
19
+ */
20
+
21
+ #ifndef LIBHEIF_HEIF_TILING_H
22
+ #define LIBHEIF_HEIF_TILING_H
23
+
24
+ #ifdef __cplusplus
25
+ extern "C" {
26
+ #endif
27
+
28
+ #include <libheif/heif_library.h>
29
+ #include <libheif/heif_error.h>
30
+ #include <libheif/heif_image.h>
31
+
32
+ // forward declaration from other headers
33
+ typedef struct heif_encoder heif_encoder;
34
+ typedef struct heif_encoding_options heif_encoding_options;
35
+
36
+
37
+ typedef struct heif_image_tiling
38
+ {
39
+ int version;
40
+
41
+ // --- version 1
42
+
43
+ uint32_t num_columns;
44
+ uint32_t num_rows;
45
+ uint32_t tile_width;
46
+ uint32_t tile_height;
47
+
48
+ uint32_t image_width;
49
+ uint32_t image_height;
50
+
51
+ // Position of the top left tile.
52
+ // Usually, this is (0;0), but if a tiled image is rotated or cropped, it may be that the top left tile should be placed at a negative position.
53
+ // The offsets define this negative shift.
54
+ uint32_t top_offset;
55
+ uint32_t left_offset;
56
+
57
+ uint8_t number_of_extra_dimensions; // 0 for normal images, 1 for volumetric (3D), ...
58
+ uint32_t extra_dimension_size[8]; // size of extra dimensions (first 8 dimensions)
59
+ } heif_image_tiling;
60
+
61
+
62
+ // --- decoding ---
63
+
64
+ // If 'process_image_transformations' is true, this returns modified sizes.
65
+ // If it is false, the top_offset and left_offset will always be (0;0).
66
+ LIBHEIF_API
67
+ heif_error heif_image_handle_get_image_tiling(const heif_image_handle* handle, int process_image_transformations, struct heif_image_tiling* out_tiling);
68
+
69
+
70
+ // For grid images, return the image item ID of a specific grid tile.
71
+ // If 'process_image_transformations' is true, the tile positions are given in the transformed image coordinate system and
72
+ // are internally mapped to the original image tile positions.
73
+ LIBHEIF_API
74
+ heif_error heif_image_handle_get_grid_image_tile_id(const heif_image_handle* handle,
75
+ int process_image_transformations,
76
+ uint32_t tile_x, uint32_t tile_y,
77
+ heif_item_id* out_tile_item_id);
78
+
79
+
80
+ typedef struct heif_decoding_options heif_decoding_options;
81
+
82
+ // The tile position is given in tile indices, not in pixel coordinates.
83
+ // If the image transformations are processed (option->ignore_image_transformations==false), the tile position
84
+ // is given in the transformed coordinates.
85
+ LIBHEIF_API
86
+ heif_error heif_image_handle_decode_image_tile(const heif_image_handle* in_handle,
87
+ heif_image** out_img,
88
+ enum heif_colorspace colorspace,
89
+ enum heif_chroma chroma,
90
+ const heif_decoding_options* options,
91
+ uint32_t tile_x, uint32_t tile_y);
92
+
93
+
94
+ // --- encoding ---
95
+
96
+ /**
97
+ * @brief Encodes an array of images into a grid.
98
+ *
99
+ * @param ctx The file context
100
+ * @param tiles User allocated array of images that will form the grid.
101
+ * @param rows The number of rows in the grid.
102
+ * @param columns The number of columns in the grid.
103
+ * @param encoder Defines the encoder to use. See heif_context_get_encoder_for_format()
104
+ * @param input_options Optional, may be nullptr.
105
+ * @param out_image_handle Returns a handle to the grid. The caller is responsible for freeing it.
106
+ * @return Returns an error if ctx, tiles, or encoder is nullptr. If rows or columns is 0.
107
+ */
108
+ LIBHEIF_API
109
+ heif_error heif_context_encode_grid(heif_context* ctx,
110
+ heif_image** tiles,
111
+ uint16_t rows,
112
+ uint16_t columns,
113
+ heif_encoder* encoder,
114
+ const heif_encoding_options* input_options,
115
+ heif_image_handle** out_image_handle);
116
+
117
+ LIBHEIF_API
118
+ heif_error heif_context_add_grid_image(heif_context* ctx,
119
+ uint32_t image_width,
120
+ uint32_t image_height,
121
+ uint32_t tile_columns,
122
+ uint32_t tile_rows,
123
+ const heif_encoding_options* encoding_options,
124
+ heif_image_handle** out_grid_image_handle);
125
+
126
+ LIBHEIF_API
127
+ heif_error heif_context_add_image_tile(heif_context* ctx,
128
+ heif_image_handle* tiled_image,
129
+ uint32_t tile_x, uint32_t tile_y,
130
+ const heif_image* image,
131
+ heif_encoder* encoder);
132
+
133
+ #ifdef __cplusplus
134
+ }
135
+ #endif
136
+
137
+ #endif
@@ -0,0 +1,109 @@
1
+ /*
2
+ * HEIF codec.
3
+ * Copyright (c) 2024-2025 Dirk Farin <dirk.farin@gmail.com>
4
+ *
5
+ * This file is part of libheif.
6
+ *
7
+ * libheif is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Lesser General Public License as
9
+ * published by the Free Software Foundation, either version 3 of
10
+ * the License, or (at your option) any later version.
11
+ *
12
+ * libheif is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU Lesser General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU Lesser General Public License
18
+ * along with libheif. If not, see <http://www.gnu.org/licenses/>.
19
+ */
20
+
21
+ #ifndef LIBHEIF_HEIF_UNCOMPRESSED_H
22
+ #define LIBHEIF_HEIF_UNCOMPRESSED_H
23
+
24
+ #include "libheif/heif.h"
25
+
26
+ #ifdef __cplusplus
27
+ extern "C" {
28
+ #endif
29
+
30
+ /* @file heif_uncompressed.h
31
+ * @brief Functions for adding ISO 23001-17 (uncompressed) images to a HEIF file.
32
+ * Despite its name, this is not limited to uncompressed images.
33
+ * It is also possible to add images with lossless compression methods.
34
+ * See heif_metadata_compression for more information.
35
+ */
36
+
37
+ // --- 'unci' images
38
+
39
+ // This is similar to heif_metadata_compression. We should try to keep the integers compatible, but each enum will just
40
+ // contain the allowed values.
41
+ enum heif_unci_compression
42
+ {
43
+ heif_unci_compression_off = 0,
44
+ //heif_unci_compression_auto = 1,
45
+ //heif_unci_compression_unknown = 2, // only used when reading unknown method from input file
46
+ heif_unci_compression_deflate = 3,
47
+ heif_unci_compression_zlib = 4,
48
+ heif_unci_compression_brotli = 5
49
+ };
50
+
51
+
52
+ typedef struct heif_unci_image_parameters
53
+ {
54
+ int version;
55
+
56
+ // --- version 1
57
+
58
+ uint32_t image_width;
59
+ uint32_t image_height;
60
+
61
+ uint32_t tile_width;
62
+ uint32_t tile_height;
63
+
64
+ enum heif_unci_compression compression;
65
+
66
+ // TODO: interleave type, padding
67
+ } heif_unci_image_parameters;
68
+
69
+ LIBHEIF_API
70
+ heif_unci_image_parameters* heif_unci_image_parameters_alloc(void);
71
+
72
+ LIBHEIF_API
73
+ void heif_unci_image_parameters_copy(heif_unci_image_parameters* dst,
74
+ const heif_unci_image_parameters* src);
75
+
76
+ LIBHEIF_API
77
+ void heif_unci_image_parameters_release(heif_unci_image_parameters*);
78
+
79
+
80
+ /*
81
+ * This adds an empty iso23001-17 (uncompressed) image to the HEIF file.
82
+ * The actual image data is added later using heif_context_add_image_tile().
83
+ * If you do not need tiling, you can use heif_context_encode_image() instead.
84
+ * However, this will by default disable any compression and any control about
85
+ * the data layout.
86
+ *
87
+ * @param ctx The file context
88
+ * @param parameters The parameters for the image, must not be NULL.
89
+ * @param encoding_options Optional, may be NULL.
90
+ * @param prototype An image with the same channel configuration as the image data
91
+ * that will be later inserted. The image size need not match this.
92
+ * Must not be NULL.
93
+ * @param out_unci_image_handle Returns a handle to the image. The caller is responsible for freeing it.
94
+ * Must not be NULL because this is required to fill in image data.
95
+ * @return Returns an error if the passed parameters are incorrect.
96
+ * If ISO23001-17 images are not supported, returns heif_error_Unsupported_feature.
97
+ */
98
+ LIBHEIF_API
99
+ heif_error heif_context_add_empty_unci_image(heif_context* ctx,
100
+ const heif_unci_image_parameters* parameters,
101
+ const heif_encoding_options* encoding_options,
102
+ const heif_image* prototype,
103
+ heif_image_handle** out_unci_image_handle);
104
+
105
+ #ifdef __cplusplus
106
+ }
107
+ #endif
108
+
109
+ #endif
@@ -28,10 +28,10 @@
28
28
  #define LIBHEIF_HEIF_VERSION_H
29
29
 
30
30
  /* Numeric representation of the version */
31
- #define LIBHEIF_NUMERIC_VERSION ((1<<24) | (19<<16) | (8<<8) | 0)
31
+ #define LIBHEIF_NUMERIC_VERSION ((1<<24) | (20<<16) | (1<<8) | 0)
32
32
 
33
33
  /* Version string */
34
- #define LIBHEIF_VERSION "1.19.8"
34
+ #define LIBHEIF_VERSION "1.20.1"
35
35
 
36
36
  #define LIBHEIF_PLUGIN_DIRECTORY "/src/build/target/lib/libheif"
37
37
 
@@ -4,16 +4,16 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.17.0"
8
- #define VIPS_VERSION_STRING "8.17.0"
7
+ #define VIPS_VERSION "8.17.1"
8
+ #define VIPS_VERSION_STRING "8.17.1"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
10
  #define VIPS_MINOR_VERSION (17)
11
- #define VIPS_MICRO_VERSION (0)
11
+ #define VIPS_MICRO_VERSION (1)
12
12
 
13
13
  /* The ABI version, as used for library versioning.
14
14
  */
15
15
  #define VIPS_LIBRARY_CURRENT (61)
16
- #define VIPS_LIBRARY_REVISION (0)
16
+ #define VIPS_LIBRARY_REVISION (1)
17
17
  #define VIPS_LIBRARY_AGE (19)
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\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with spng: 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\nMagick load/save with MagickCore: false (dynamic module: false)"
@@ -115,7 +115,7 @@ typedef unsigned int guintptr;
115
115
 
116
116
  #define GLIB_MAJOR_VERSION 2
117
117
  #define GLIB_MINOR_VERSION 85
118
- #define GLIB_MICRO_VERSION 0
118
+ #define GLIB_MICRO_VERSION 1
119
119
 
120
120
  #define G_OS_UNIX
121
121
  #define G_PLATFORM_WASM
package/lib/libffi.a CHANGED
Binary file
package/lib/libffi.la CHANGED
@@ -1,5 +1,5 @@
1
1
  # libffi.la - a libtool library file
2
- # Generated by libtool (GNU libtool) 2.4.7
2
+ # Generated by libtool (GNU libtool) 2.5.4
3
3
  #
4
4
  # Please DO NOT delete this file!
5
5
  # It is necessary for linking the library.
@@ -23,9 +23,9 @@ dependency_libs=' -L/src/build/target/lib'
23
23
  weak_library_names=''
24
24
 
25
25
  # Version information for libffi.
26
- current=9
27
- age=1
28
- revision=4
26
+ current=10
27
+ age=2
28
+ revision=0
29
29
 
30
30
  # Is this an already installed library?
31
31
  installed=yes
package/lib/libgio-2.0.a CHANGED
Binary file
package/lib/libglib-2.0.a CHANGED
Binary file
Binary file
package/lib/libheif.a CHANGED
Binary file
package/lib/libjpeg.a CHANGED
Binary file
package/lib/libresvg.a CHANGED
Binary file
package/lib/libvips.a CHANGED
Binary file
@@ -18,7 +18,7 @@ gsettings=${bindir}/gsettings
18
18
 
19
19
  Name: GIO
20
20
  Description: glib I/O library
21
- Version: 2.85.0
21
+ Version: 2.85.1
22
22
  Requires: glib-2.0, gobject-2.0, gmodule-no-export-2.0, zlib
23
23
  Libs: -L${libdir} -lgio-2.0
24
24
  Cflags: -I${includedir}
@@ -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.85.0
14
+ Version: 2.85.1
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
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.85.0
9
+ Version: 2.85.1
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.85.0
9
+ Version: 2.85.1
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.85.0
9
+ Version: 2.85.1
10
10
  Requires: glib-2.0
11
11
  Libs: -L${libdir} -lgmodule-2.0 -pthread
12
12
  Cflags: -I${includedir} -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GObject
6
6
  Description: GLib Type, Object, Parameter and Signal Library
7
- Version: 2.85.0
7
+ Version: 2.85.1
8
8
  Requires: glib-2.0, libffi >= 3.0.0
9
9
  Libs: -L${libdir} -lgobject-2.0
10
10
  Cflags: -I${includedir}
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GThread
6
6
  Description: Thread support for GLib
7
- Version: 2.85.0
7
+ Version: 2.85.1
8
8
  Requires: glib-2.0
9
9
  Libs: -L${libdir} -lgthread-2.0 -pthread
10
10
  Cflags: -I${includedir} -pthread
@@ -6,6 +6,6 @@ includedir=${prefix}/include
6
6
 
7
7
  Name: libffi
8
8
  Description: Library supporting Foreign Function Interfaces
9
- Version: 3.4.8
9
+ Version: 3.5.1
10
10
  Libs: -L${toolexeclibdir} -lffi
11
11
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ includedir=${prefix}/include
6
6
  Name: libheif
7
7
  Description: HEIF image codec.
8
8
  URL: https://github.com/strukturag/libheif
9
- Version: 1.19.8
9
+ Version: 1.20.1
10
10
  Requires:
11
11
  Requires.private: aom libsharpyuv
12
12
  Libs: -L${libdir} -lheif
@@ -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.17.0
7
+ Version: 8.17.1
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, spng >= 0.7, 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
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips
6
6
  Description: Image processing library
7
- Version: 8.17.0
7
+ Version: 8.17.1
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, spng >= 0.7, 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.2.0-rc.3",
3
+ "version": "1.2.0-rc.4",
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",