@img/sharp-libvips-dev 0.0.1 → 0.0.3
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 -3
- package/cplusplus/VConnection.cpp +54 -54
- package/cplusplus/VError.cpp +20 -18
- package/cplusplus/VImage.cpp +636 -589
- package/cplusplus/VInterpolate.cpp +22 -22
- package/cplusplus/VRegion.cpp +4 -4
- package/cplusplus/vips-operators.cpp +2326 -2301
- package/include/aom/aom_codec.h +10 -6
- package/include/aom/aom_decoder.h +1 -1
- package/include/aom/aom_encoder.h +9 -2
- package/include/aom/aomcx.h +72 -3
- package/include/cairo/cairo-ft.h +1 -1
- package/include/cairo/cairo-gobject.h +8 -0
- package/include/cairo/cairo-svg.h +3 -3
- package/include/cairo/cairo-version.h +2 -2
- package/include/cairo/cairo.h +91 -24
- package/include/glib-2.0/glib/gmacros.h +1 -1
- package/include/glib-2.0/glib/gtestutils.h +1 -1
- package/include/glib-2.0/gobject/gtype.h +7 -7
- package/include/harfbuzz/hb-version.h +2 -2
- package/include/hwy/aligned_allocator.h +211 -0
- package/include/hwy/base.h +1517 -0
- package/include/hwy/cache_control.h +108 -0
- package/include/hwy/detect_compiler_arch.h +281 -0
- package/include/hwy/detect_targets.h +644 -0
- package/include/hwy/foreach_target.h +340 -0
- package/include/hwy/highway.h +435 -0
- package/include/hwy/highway_export.h +74 -0
- package/include/hwy/nanobenchmark.h +171 -0
- package/include/hwy/ops/arm_neon-inl.h +8913 -0
- package/include/hwy/ops/arm_sve-inl.h +5105 -0
- package/include/hwy/ops/emu128-inl.h +2811 -0
- package/include/hwy/ops/generic_ops-inl.h +4745 -0
- package/include/hwy/ops/ppc_vsx-inl.h +5716 -0
- package/include/hwy/ops/rvv-inl.h +5070 -0
- package/include/hwy/ops/scalar-inl.h +1995 -0
- package/include/hwy/ops/set_macros-inl.h +578 -0
- package/include/hwy/ops/shared-inl.h +539 -0
- package/include/hwy/ops/tuple-inl.h +125 -0
- package/include/hwy/ops/wasm_128-inl.h +5917 -0
- package/include/hwy/ops/x86_128-inl.h +11173 -0
- package/include/hwy/ops/x86_256-inl.h +7529 -0
- package/include/hwy/ops/x86_512-inl.h +6849 -0
- package/include/hwy/per_target.h +44 -0
- package/include/hwy/print-inl.h +62 -0
- package/include/hwy/print.h +75 -0
- package/include/hwy/robust_statistics.h +148 -0
- package/include/hwy/targets.h +338 -0
- package/include/hwy/timer-inl.h +200 -0
- package/include/hwy/timer.h +55 -0
- package/include/jconfig.h +2 -2
- package/include/jpeglib.h +3 -2
- package/include/libheif/heif.h +461 -384
- package/include/libheif/heif_cxx.h +4 -1
- package/include/libheif/heif_plugin.h +1 -1
- package/include/libheif/heif_properties.h +138 -0
- package/include/libheif/heif_regions.h +866 -0
- package/include/libheif/heif_version.h +3 -3
- package/include/libpng16/pnglibconf.h +1 -1
- package/include/pnglibconf.h +1 -1
- package/include/vips/VConnection8.h +43 -49
- package/include/vips/VError8.h +27 -24
- package/include/vips/VImage8.h +4861 -4597
- package/include/vips/VInterpolate8.h +24 -27
- package/include/vips/VRegion8.h +32 -33
- package/include/vips/arithmetic.h +169 -169
- package/include/vips/basic.h +33 -33
- package/include/vips/buf.h +56 -54
- package/include/vips/colour.h +95 -95
- package/include/vips/connection.h +190 -193
- package/include/vips/conversion.h +91 -91
- package/include/vips/convolution.h +36 -30
- package/include/vips/create.h +63 -63
- package/include/vips/dbuf.h +35 -37
- package/include/vips/debug.h +65 -33
- package/include/vips/draw.h +41 -41
- package/include/vips/enumtypes.h +54 -51
- package/include/vips/error.h +63 -63
- package/include/vips/foreign.h +263 -223
- package/include/vips/format.h +48 -48
- package/include/vips/freqfilt.h +22 -22
- package/include/vips/gate.h +55 -47
- package/include/vips/generate.h +34 -34
- package/include/vips/header.h +111 -101
- package/include/vips/histogram.h +28 -28
- package/include/vips/image.h +213 -213
- package/include/vips/interpolate.h +40 -41
- package/include/vips/memory.h +61 -52
- package/include/vips/morphology.h +24 -24
- package/include/vips/mosaicing.h +32 -33
- package/include/vips/object.h +371 -357
- package/include/vips/operation.h +68 -67
- package/include/vips/private.h +76 -76
- package/include/vips/rect.h +26 -26
- package/include/vips/region.h +92 -92
- package/include/vips/resample.h +38 -38
- package/include/vips/sbuf.h +53 -54
- package/include/vips/semaphore.h +24 -24
- package/include/vips/thread.h +30 -27
- package/include/vips/threadpool.h +48 -49
- package/include/vips/transform.h +39 -39
- package/include/vips/type.h +90 -85
- package/include/vips/util.h +274 -229
- package/include/vips/vector.h +24 -144
- package/include/vips/version.h +9 -9
- package/include/vips/vips.h +41 -40
- package/include/zlib.h +23 -19
- package/package.json +1 -1
- package/versions.json +9 -9
package/include/vips/error.h
CHANGED
|
@@ -3,28 +3,28 @@
|
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Copyright (C) 1991-2005 The National Gallery
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
This library is free software; you can redistribute it and/or
|
|
9
|
+
modify it under the terms of the GNU Lesser General Public
|
|
10
|
+
License as published by the Free Software Foundation; either
|
|
11
|
+
version 2.1 of the License, or (at your option) any later version.
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
This library is distributed in the hope that it will be useful,
|
|
14
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
16
|
+
Lesser General Public License for more details.
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
You should have received a copy of the GNU Lesser General Public
|
|
19
|
+
License along with this library; if not, write to the Free Software
|
|
20
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
21
|
+
02110-1301 USA
|
|
22
22
|
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
25
|
/*
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
|
28
28
|
|
|
29
29
|
*/
|
|
30
30
|
|
|
@@ -36,104 +36,104 @@ extern "C" {
|
|
|
36
36
|
#endif /*__cplusplus*/
|
|
37
37
|
|
|
38
38
|
VIPS_API
|
|
39
|
-
const char *vips_error_buffer(
|
|
39
|
+
const char *vips_error_buffer(void);
|
|
40
40
|
VIPS_API
|
|
41
|
-
char *vips_error_buffer_copy(
|
|
41
|
+
char *vips_error_buffer_copy(void);
|
|
42
42
|
VIPS_API
|
|
43
|
-
void vips_error_clear(
|
|
43
|
+
void vips_error_clear(void);
|
|
44
44
|
|
|
45
45
|
VIPS_API
|
|
46
|
-
void vips_error_freeze(
|
|
46
|
+
void vips_error_freeze(void);
|
|
47
47
|
VIPS_API
|
|
48
|
-
void vips_error_thaw(
|
|
48
|
+
void vips_error_thaw(void);
|
|
49
49
|
|
|
50
50
|
VIPS_API
|
|
51
|
-
void vips_error(
|
|
52
|
-
G_GNUC_PRINTF(
|
|
51
|
+
void vips_error(const char *domain, const char *fmt, ...)
|
|
52
|
+
G_GNUC_PRINTF(2, 3);
|
|
53
53
|
VIPS_API
|
|
54
|
-
void vips_verror(
|
|
54
|
+
void vips_verror(const char *domain, const char *fmt, va_list ap);
|
|
55
55
|
VIPS_API
|
|
56
|
-
void vips_error_system(
|
|
57
|
-
G_GNUC_PRINTF(
|
|
56
|
+
void vips_error_system(int err, const char *domain, const char *fmt, ...)
|
|
57
|
+
G_GNUC_PRINTF(3, 4);
|
|
58
58
|
VIPS_API
|
|
59
|
-
void vips_verror_system(
|
|
60
|
-
const char *fmt, va_list ap
|
|
59
|
+
void vips_verror_system(int err, const char *domain,
|
|
60
|
+
const char *fmt, va_list ap);
|
|
61
61
|
VIPS_API
|
|
62
|
-
void vips_error_g(
|
|
62
|
+
void vips_error_g(GError **error);
|
|
63
63
|
VIPS_API
|
|
64
|
-
void vips_g_error(
|
|
64
|
+
void vips_g_error(GError **error);
|
|
65
65
|
|
|
66
66
|
VIPS_API
|
|
67
|
-
void vips_error_exit(
|
|
68
|
-
G_GNUC_NORETURN G_GNUC_PRINTF(
|
|
67
|
+
void vips_error_exit(const char *fmt, ...)
|
|
68
|
+
G_GNUC_NORETURN G_GNUC_PRINTF(1, 2);
|
|
69
69
|
|
|
70
70
|
VIPS_API
|
|
71
|
-
int vips_check_uncoded(
|
|
71
|
+
int vips_check_uncoded(const char *domain, VipsImage *im);
|
|
72
72
|
VIPS_API
|
|
73
|
-
int vips_check_coding(
|
|
73
|
+
int vips_check_coding(const char *domain, VipsImage *im, VipsCoding coding);
|
|
74
74
|
VIPS_API
|
|
75
|
-
int vips_check_coding_known(
|
|
75
|
+
int vips_check_coding_known(const char *domain, VipsImage *im);
|
|
76
76
|
VIPS_API
|
|
77
|
-
int vips_check_coding_noneorlabq(
|
|
77
|
+
int vips_check_coding_noneorlabq(const char *domain, VipsImage *im);
|
|
78
78
|
VIPS_API
|
|
79
|
-
int vips_check_coding_same(
|
|
79
|
+
int vips_check_coding_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
|
80
80
|
VIPS_API
|
|
81
|
-
int vips_check_mono(
|
|
81
|
+
int vips_check_mono(const char *domain, VipsImage *im);
|
|
82
82
|
VIPS_API
|
|
83
|
-
int vips_check_bands(
|
|
83
|
+
int vips_check_bands(const char *domain, VipsImage *im, int bands);
|
|
84
84
|
VIPS_API
|
|
85
|
-
int vips_check_bands_1or3(
|
|
85
|
+
int vips_check_bands_1or3(const char *domain, VipsImage *im);
|
|
86
86
|
VIPS_API
|
|
87
|
-
int vips_check_bands_atleast(
|
|
87
|
+
int vips_check_bands_atleast(const char *domain, VipsImage *im, int bands);
|
|
88
88
|
VIPS_API
|
|
89
|
-
int vips_check_bands_1orn(
|
|
89
|
+
int vips_check_bands_1orn(const char *domain, VipsImage *im1, VipsImage *im2);
|
|
90
90
|
VIPS_API
|
|
91
|
-
int vips_check_bands_1orn_unary(
|
|
91
|
+
int vips_check_bands_1orn_unary(const char *domain, VipsImage *im, int n);
|
|
92
92
|
VIPS_API
|
|
93
|
-
int vips_check_bands_same(
|
|
93
|
+
int vips_check_bands_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
|
94
94
|
VIPS_API
|
|
95
|
-
int vips_check_bandno(
|
|
95
|
+
int vips_check_bandno(const char *domain, VipsImage *im, int bandno);
|
|
96
96
|
|
|
97
97
|
VIPS_API
|
|
98
|
-
int vips_check_int(
|
|
98
|
+
int vips_check_int(const char *domain, VipsImage *im);
|
|
99
99
|
VIPS_API
|
|
100
|
-
int vips_check_uint(
|
|
100
|
+
int vips_check_uint(const char *domain, VipsImage *im);
|
|
101
101
|
VIPS_API
|
|
102
|
-
int vips_check_uintorf(
|
|
102
|
+
int vips_check_uintorf(const char *domain, VipsImage *im);
|
|
103
103
|
VIPS_API
|
|
104
|
-
int vips_check_noncomplex(
|
|
104
|
+
int vips_check_noncomplex(const char *domain, VipsImage *im);
|
|
105
105
|
VIPS_API
|
|
106
|
-
int vips_check_complex(
|
|
106
|
+
int vips_check_complex(const char *domain, VipsImage *im);
|
|
107
107
|
VIPS_API
|
|
108
|
-
int vips_check_twocomponents(
|
|
108
|
+
int vips_check_twocomponents(const char *domain, VipsImage *im);
|
|
109
109
|
VIPS_API
|
|
110
|
-
int vips_check_format(
|
|
110
|
+
int vips_check_format(const char *domain, VipsImage *im, VipsBandFormat fmt);
|
|
111
111
|
VIPS_API
|
|
112
|
-
int vips_check_u8or16(
|
|
112
|
+
int vips_check_u8or16(const char *domain, VipsImage *im);
|
|
113
113
|
VIPS_API
|
|
114
|
-
int vips_check_8or16(
|
|
114
|
+
int vips_check_8or16(const char *domain, VipsImage *im);
|
|
115
115
|
VIPS_API
|
|
116
|
-
int vips_check_u8or16orf(
|
|
116
|
+
int vips_check_u8or16orf(const char *domain, VipsImage *im);
|
|
117
117
|
VIPS_API
|
|
118
|
-
int vips_check_format_same(
|
|
118
|
+
int vips_check_format_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
|
119
119
|
VIPS_API
|
|
120
|
-
int vips_check_size_same(
|
|
120
|
+
int vips_check_size_same(const char *domain, VipsImage *im1, VipsImage *im2);
|
|
121
121
|
VIPS_API
|
|
122
|
-
int vips_check_oddsquare(
|
|
122
|
+
int vips_check_oddsquare(const char *domain, VipsImage *im);
|
|
123
123
|
VIPS_API
|
|
124
|
-
int vips_check_vector_length(
|
|
124
|
+
int vips_check_vector_length(const char *domain, int n, int len);
|
|
125
125
|
VIPS_API
|
|
126
|
-
int vips_check_vector(
|
|
126
|
+
int vips_check_vector(const char *domain, int n, VipsImage *im);
|
|
127
127
|
VIPS_API
|
|
128
|
-
int vips_check_hist(
|
|
128
|
+
int vips_check_hist(const char *domain, VipsImage *im);
|
|
129
129
|
VIPS_API
|
|
130
|
-
int vips_check_matrix(
|
|
130
|
+
int vips_check_matrix(const char *domain, VipsImage *im, VipsImage **out);
|
|
131
131
|
VIPS_API
|
|
132
|
-
int vips_check_separable(
|
|
132
|
+
int vips_check_separable(const char *domain, VipsImage *im);
|
|
133
133
|
|
|
134
134
|
VIPS_API
|
|
135
|
-
int vips_check_precision_intfloat(
|
|
136
|
-
VipsPrecision precision
|
|
135
|
+
int vips_check_precision_intfloat(const char *domain,
|
|
136
|
+
VipsPrecision precision);
|
|
137
137
|
|
|
138
138
|
#ifdef __cplusplus
|
|
139
139
|
}
|