@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.
Files changed (109) hide show
  1. package/README.md +3 -3
  2. package/cplusplus/VConnection.cpp +54 -54
  3. package/cplusplus/VError.cpp +20 -18
  4. package/cplusplus/VImage.cpp +636 -589
  5. package/cplusplus/VInterpolate.cpp +22 -22
  6. package/cplusplus/VRegion.cpp +4 -4
  7. package/cplusplus/vips-operators.cpp +2326 -2301
  8. package/include/aom/aom_codec.h +10 -6
  9. package/include/aom/aom_decoder.h +1 -1
  10. package/include/aom/aom_encoder.h +9 -2
  11. package/include/aom/aomcx.h +72 -3
  12. package/include/cairo/cairo-ft.h +1 -1
  13. package/include/cairo/cairo-gobject.h +8 -0
  14. package/include/cairo/cairo-svg.h +3 -3
  15. package/include/cairo/cairo-version.h +2 -2
  16. package/include/cairo/cairo.h +91 -24
  17. package/include/glib-2.0/glib/gmacros.h +1 -1
  18. package/include/glib-2.0/glib/gtestutils.h +1 -1
  19. package/include/glib-2.0/gobject/gtype.h +7 -7
  20. package/include/harfbuzz/hb-version.h +2 -2
  21. package/include/hwy/aligned_allocator.h +211 -0
  22. package/include/hwy/base.h +1517 -0
  23. package/include/hwy/cache_control.h +108 -0
  24. package/include/hwy/detect_compiler_arch.h +281 -0
  25. package/include/hwy/detect_targets.h +644 -0
  26. package/include/hwy/foreach_target.h +340 -0
  27. package/include/hwy/highway.h +435 -0
  28. package/include/hwy/highway_export.h +74 -0
  29. package/include/hwy/nanobenchmark.h +171 -0
  30. package/include/hwy/ops/arm_neon-inl.h +8913 -0
  31. package/include/hwy/ops/arm_sve-inl.h +5105 -0
  32. package/include/hwy/ops/emu128-inl.h +2811 -0
  33. package/include/hwy/ops/generic_ops-inl.h +4745 -0
  34. package/include/hwy/ops/ppc_vsx-inl.h +5716 -0
  35. package/include/hwy/ops/rvv-inl.h +5070 -0
  36. package/include/hwy/ops/scalar-inl.h +1995 -0
  37. package/include/hwy/ops/set_macros-inl.h +578 -0
  38. package/include/hwy/ops/shared-inl.h +539 -0
  39. package/include/hwy/ops/tuple-inl.h +125 -0
  40. package/include/hwy/ops/wasm_128-inl.h +5917 -0
  41. package/include/hwy/ops/x86_128-inl.h +11173 -0
  42. package/include/hwy/ops/x86_256-inl.h +7529 -0
  43. package/include/hwy/ops/x86_512-inl.h +6849 -0
  44. package/include/hwy/per_target.h +44 -0
  45. package/include/hwy/print-inl.h +62 -0
  46. package/include/hwy/print.h +75 -0
  47. package/include/hwy/robust_statistics.h +148 -0
  48. package/include/hwy/targets.h +338 -0
  49. package/include/hwy/timer-inl.h +200 -0
  50. package/include/hwy/timer.h +55 -0
  51. package/include/jconfig.h +2 -2
  52. package/include/jpeglib.h +3 -2
  53. package/include/libheif/heif.h +461 -384
  54. package/include/libheif/heif_cxx.h +4 -1
  55. package/include/libheif/heif_plugin.h +1 -1
  56. package/include/libheif/heif_properties.h +138 -0
  57. package/include/libheif/heif_regions.h +866 -0
  58. package/include/libheif/heif_version.h +3 -3
  59. package/include/libpng16/pnglibconf.h +1 -1
  60. package/include/pnglibconf.h +1 -1
  61. package/include/vips/VConnection8.h +43 -49
  62. package/include/vips/VError8.h +27 -24
  63. package/include/vips/VImage8.h +4861 -4597
  64. package/include/vips/VInterpolate8.h +24 -27
  65. package/include/vips/VRegion8.h +32 -33
  66. package/include/vips/arithmetic.h +169 -169
  67. package/include/vips/basic.h +33 -33
  68. package/include/vips/buf.h +56 -54
  69. package/include/vips/colour.h +95 -95
  70. package/include/vips/connection.h +190 -193
  71. package/include/vips/conversion.h +91 -91
  72. package/include/vips/convolution.h +36 -30
  73. package/include/vips/create.h +63 -63
  74. package/include/vips/dbuf.h +35 -37
  75. package/include/vips/debug.h +65 -33
  76. package/include/vips/draw.h +41 -41
  77. package/include/vips/enumtypes.h +54 -51
  78. package/include/vips/error.h +63 -63
  79. package/include/vips/foreign.h +263 -223
  80. package/include/vips/format.h +48 -48
  81. package/include/vips/freqfilt.h +22 -22
  82. package/include/vips/gate.h +55 -47
  83. package/include/vips/generate.h +34 -34
  84. package/include/vips/header.h +111 -101
  85. package/include/vips/histogram.h +28 -28
  86. package/include/vips/image.h +213 -213
  87. package/include/vips/interpolate.h +40 -41
  88. package/include/vips/memory.h +61 -52
  89. package/include/vips/morphology.h +24 -24
  90. package/include/vips/mosaicing.h +32 -33
  91. package/include/vips/object.h +371 -357
  92. package/include/vips/operation.h +68 -67
  93. package/include/vips/private.h +76 -76
  94. package/include/vips/rect.h +26 -26
  95. package/include/vips/region.h +92 -92
  96. package/include/vips/resample.h +38 -38
  97. package/include/vips/sbuf.h +53 -54
  98. package/include/vips/semaphore.h +24 -24
  99. package/include/vips/thread.h +30 -27
  100. package/include/vips/threadpool.h +48 -49
  101. package/include/vips/transform.h +39 -39
  102. package/include/vips/type.h +90 -85
  103. package/include/vips/util.h +274 -229
  104. package/include/vips/vector.h +24 -144
  105. package/include/vips/version.h +9 -9
  106. package/include/vips/vips.h +41 -40
  107. package/include/zlib.h +23 -19
  108. package/package.json +1 -1
  109. package/versions.json +9 -9
@@ -6,28 +6,28 @@
6
6
 
7
7
  /*
8
8
 
9
- This file is part of VIPS.
9
+ This file is part of VIPS.
10
10
 
11
- VIPS is free software; you can redistribute it and/or modify
12
- it under the terms of the GNU Lesser General Public License as published by
13
- the Free Software Foundation; either version 2 of the License, or
14
- (at your option) any later version.
11
+ VIPS is free software; you can redistribute it and/or modify
12
+ it under the terms of the GNU Lesser General Public License as published by
13
+ the Free Software Foundation; either version 2 of the License, or
14
+ (at your option) any later version.
15
15
 
16
- This program is distributed in the hope that it will be useful,
17
- but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- GNU Lesser General Public License for more details.
16
+ This program is distributed in the hope that it will be useful,
17
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ GNU Lesser General Public License for more details.
20
20
 
21
- You should have received a copy of the GNU Lesser General Public License
22
- along with this program; if not, write to the Free Software
23
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24
- 02110-1301 USA
21
+ You should have received a copy of the GNU Lesser General Public License
22
+ along with this program; if not, write to the Free Software
23
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24
+ 02110-1301 USA
25
25
 
26
26
  */
27
27
 
28
28
  /*
29
29
 
30
- These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
30
+ These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
31
31
 
32
32
  */
33
33
 
@@ -41,7 +41,7 @@
41
41
  extern "C" {
42
42
  #endif /*__cplusplus*/
43
43
 
44
- /**
44
+ /**
45
45
  * VipsOperationMath:
46
46
  * @VIPS_OPERATION_MATH_SIN: sin(), angles in degrees
47
47
  * @VIPS_OPERATION_MATH_COS: cos(), angles in degrees
@@ -49,8 +49,8 @@ extern "C" {
49
49
  * @VIPS_OPERATION_MATH_ASIN: asin(), angles in degrees
50
50
  * @VIPS_OPERATION_MATH_ACOS: acos(), angles in degrees
51
51
  * @VIPS_OPERATION_MATH_ATAN: atan(), angles in degrees
52
- * @VIPS_OPERATION_MATH_LOG: log base e
53
- * @VIPS_OPERATION_MATH_LOG10: log base 10
52
+ * @VIPS_OPERATION_MATH_LOG: log base e
53
+ * @VIPS_OPERATION_MATH_LOG10: log base 10
54
54
  * @VIPS_OPERATION_MATH_EXP: e to the something
55
55
  * @VIPS_OPERATION_MATH_EXP10: 10 to the something
56
56
  * @VIPS_OPERATION_MATH_SINH: sinh(), angles in radians
@@ -82,11 +82,11 @@ typedef enum {
82
82
  VIPS_OPERATION_MATH_LAST
83
83
  } VipsOperationMath;
84
84
 
85
- /**
85
+ /**
86
86
  * VipsOperationMath2:
87
- * @VIPS_OPERATION_MATH2_POW: pow( left, right )
88
- * @VIPS_OPERATION_MATH2_WOP: pow( right, left )
89
- * @VIPS_OPERATION_MATH2_ATAN2: atan2( left, right )
87
+ * @VIPS_OPERATION_MATH2_POW: pow(left, right)
88
+ * @VIPS_OPERATION_MATH2_WOP: pow(right, left)
89
+ * @VIPS_OPERATION_MATH2_ATAN2: atan2(left, right)
90
90
  *
91
91
  * See also: vips_math().
92
92
  */
@@ -97,7 +97,7 @@ typedef enum {
97
97
  VIPS_OPERATION_MATH2_LAST
98
98
  } VipsOperationMath2;
99
99
 
100
- /**
100
+ /**
101
101
  * VipsOperationRound:
102
102
  * @VIPS_OPERATION_ROUND_RINT: round to nearest
103
103
  * @VIPS_OPERATION_ROUND_FLOOR: largest integral value not greater than
@@ -112,7 +112,7 @@ typedef enum {
112
112
  VIPS_OPERATION_ROUND_LAST
113
113
  } VipsOperationRound;
114
114
 
115
- /**
115
+ /**
116
116
  * VipsOperationRelational:
117
117
  * @VIPS_OPERATION_RELATIONAL_EQUAL: ==
118
118
  * @VIPS_OPERATION_RELATIONAL_NOTEQ: !=
@@ -133,7 +133,7 @@ typedef enum {
133
133
  VIPS_OPERATION_RELATIONAL_LAST
134
134
  } VipsOperationRelational;
135
135
 
136
- /**
136
+ /**
137
137
  * VipsOperationBoolean:
138
138
  * @VIPS_OPERATION_BOOLEAN_AND: &
139
139
  * @VIPS_OPERATION_BOOLEAN_OR: |
@@ -152,7 +152,7 @@ typedef enum {
152
152
  VIPS_OPERATION_BOOLEAN_LAST
153
153
  } VipsOperationBoolean;
154
154
 
155
- /**
155
+ /**
156
156
  * VipsOperationComplex:
157
157
  * @VIPS_OPERATION_COMPLEX_POLAR: convert to polar coordinates
158
158
  * @VIPS_OPERATION_COMPLEX_RECT: convert to rectangular coordinates
@@ -167,7 +167,7 @@ typedef enum {
167
167
  VIPS_OPERATION_COMPLEX_LAST
168
168
  } VipsOperationComplex;
169
169
 
170
- /**
170
+ /**
171
171
  * VipsOperationComplex2:
172
172
  * @VIPS_OPERATION_COMPLEX2_CROSS_PHASE: convert to polar coordinates
173
173
  *
@@ -178,7 +178,7 @@ typedef enum {
178
178
  VIPS_OPERATION_COMPLEX2_LAST
179
179
  } VipsOperationComplex2;
180
180
 
181
- /**
181
+ /**
182
182
  * VipsOperationComplexget:
183
183
  * @VIPS_OPERATION_COMPLEXGET_REAL: get real component
184
184
  * @VIPS_OPERATION_COMPLEXGET_IMAG: get imaginary component
@@ -192,376 +192,376 @@ typedef enum {
192
192
  } VipsOperationComplexget;
193
193
 
194
194
  VIPS_API
195
- int vips_add( VipsImage *left, VipsImage *right, VipsImage **out, ... )
195
+ int vips_add(VipsImage *left, VipsImage *right, VipsImage **out, ...)
196
196
  G_GNUC_NULL_TERMINATED;
197
197
  VIPS_API
198
- int vips_sum( VipsImage **in, VipsImage **out, int n, ... )
198
+ int vips_sum(VipsImage **in, VipsImage **out, int n, ...)
199
199
  G_GNUC_NULL_TERMINATED;
200
200
  VIPS_API
201
- int vips_subtract( VipsImage *in1, VipsImage *in2, VipsImage **out, ... )
201
+ int vips_subtract(VipsImage *in1, VipsImage *in2, VipsImage **out, ...)
202
202
  G_GNUC_NULL_TERMINATED;
203
203
  VIPS_API
204
- int vips_multiply( VipsImage *left, VipsImage *right, VipsImage **out, ... )
204
+ int vips_multiply(VipsImage *left, VipsImage *right, VipsImage **out, ...)
205
205
  G_GNUC_NULL_TERMINATED;
206
206
  VIPS_API
207
- int vips_divide( VipsImage *left, VipsImage *right, VipsImage **out, ... )
207
+ int vips_divide(VipsImage *left, VipsImage *right, VipsImage **out, ...)
208
208
  G_GNUC_NULL_TERMINATED;
209
209
  VIPS_API
210
- int vips_linear( VipsImage *in, VipsImage **out,
211
- const double *a, const double *b, int n, ... )
210
+ int vips_linear(VipsImage *in, VipsImage **out,
211
+ const double *a, const double *b, int n, ...)
212
212
  G_GNUC_NULL_TERMINATED;
213
213
  VIPS_API
214
- int vips_linear1( VipsImage *in, VipsImage **out, double a, double b, ... )
214
+ int vips_linear1(VipsImage *in, VipsImage **out, double a, double b, ...)
215
215
  G_GNUC_NULL_TERMINATED;
216
216
  VIPS_API
217
- int vips_remainder( VipsImage *left, VipsImage *right, VipsImage **out, ... )
217
+ int vips_remainder(VipsImage *left, VipsImage *right, VipsImage **out, ...)
218
218
  G_GNUC_NULL_TERMINATED;
219
219
  VIPS_API
220
- int vips_remainder_const( VipsImage *in, VipsImage **out,
221
- const double *c, int n, ... )
220
+ int vips_remainder_const(VipsImage *in, VipsImage **out,
221
+ const double *c, int n, ...)
222
222
  G_GNUC_NULL_TERMINATED;
223
223
  VIPS_API
224
- int vips_remainder_const1( VipsImage *in, VipsImage **out,
225
- double c, ... )
224
+ int vips_remainder_const1(VipsImage *in, VipsImage **out,
225
+ double c, ...)
226
226
  G_GNUC_NULL_TERMINATED;
227
227
  VIPS_API
228
- int vips_invert( VipsImage *in, VipsImage **out, ... )
228
+ int vips_invert(VipsImage *in, VipsImage **out, ...)
229
229
  G_GNUC_NULL_TERMINATED;
230
230
  VIPS_API
231
- int vips_abs( VipsImage *in, VipsImage **out, ... )
231
+ int vips_abs(VipsImage *in, VipsImage **out, ...)
232
232
  G_GNUC_NULL_TERMINATED;
233
233
  VIPS_API
234
- int vips_sign( VipsImage *in, VipsImage **out, ... )
234
+ int vips_sign(VipsImage *in, VipsImage **out, ...)
235
235
  G_GNUC_NULL_TERMINATED;
236
236
  VIPS_API
237
- int vips_round( VipsImage *in, VipsImage **out, VipsOperationRound round, ... )
237
+ int vips_round(VipsImage *in, VipsImage **out, VipsOperationRound round, ...)
238
238
  G_GNUC_NULL_TERMINATED;
239
239
  VIPS_API
240
- int vips_floor( VipsImage *in, VipsImage **out, ... )
240
+ int vips_floor(VipsImage *in, VipsImage **out, ...)
241
241
  G_GNUC_NULL_TERMINATED;
242
242
  VIPS_API
243
- int vips_ceil( VipsImage *in, VipsImage **out, ... )
243
+ int vips_ceil(VipsImage *in, VipsImage **out, ...)
244
244
  G_GNUC_NULL_TERMINATED;
245
245
  VIPS_API
246
- int vips_rint( VipsImage *in, VipsImage **out, ... )
246
+ int vips_rint(VipsImage *in, VipsImage **out, ...)
247
247
  G_GNUC_NULL_TERMINATED;
248
248
 
249
249
  VIPS_API
250
- int vips_math( VipsImage *in, VipsImage **out,
251
- VipsOperationMath math, ... )
250
+ int vips_math(VipsImage *in, VipsImage **out,
251
+ VipsOperationMath math, ...)
252
252
  G_GNUC_NULL_TERMINATED;
253
253
  VIPS_API
254
- int vips_sin( VipsImage *in, VipsImage **out, ... )
254
+ int vips_sin(VipsImage *in, VipsImage **out, ...)
255
255
  G_GNUC_NULL_TERMINATED;
256
256
  VIPS_API
257
- int vips_cos( VipsImage *in, VipsImage **out, ... )
257
+ int vips_cos(VipsImage *in, VipsImage **out, ...)
258
258
  G_GNUC_NULL_TERMINATED;
259
259
  VIPS_API
260
- int vips_tan( VipsImage *in, VipsImage **out, ... )
260
+ int vips_tan(VipsImage *in, VipsImage **out, ...)
261
261
  G_GNUC_NULL_TERMINATED;
262
262
  VIPS_API
263
- int vips_asin( VipsImage *in, VipsImage **out, ... )
263
+ int vips_asin(VipsImage *in, VipsImage **out, ...)
264
264
  G_GNUC_NULL_TERMINATED;
265
265
  VIPS_API
266
- int vips_acos( VipsImage *in, VipsImage **out, ... )
266
+ int vips_acos(VipsImage *in, VipsImage **out, ...)
267
267
  G_GNUC_NULL_TERMINATED;
268
268
  VIPS_API
269
- int vips_atan( VipsImage *in, VipsImage **out, ... )
269
+ int vips_atan(VipsImage *in, VipsImage **out, ...)
270
270
  G_GNUC_NULL_TERMINATED;
271
271
  VIPS_API
272
- int vips_exp( VipsImage *in, VipsImage **out, ... )
272
+ int vips_exp(VipsImage *in, VipsImage **out, ...)
273
273
  G_GNUC_NULL_TERMINATED;
274
274
  VIPS_API
275
- int vips_exp10( VipsImage *in, VipsImage **out, ... )
275
+ int vips_exp10(VipsImage *in, VipsImage **out, ...)
276
276
  G_GNUC_NULL_TERMINATED;
277
277
  VIPS_API
278
- int vips_log( VipsImage *in, VipsImage **out, ... )
278
+ int vips_log(VipsImage *in, VipsImage **out, ...)
279
279
  G_GNUC_NULL_TERMINATED;
280
280
  VIPS_API
281
- int vips_log10( VipsImage *in, VipsImage **out, ... )
281
+ int vips_log10(VipsImage *in, VipsImage **out, ...)
282
282
  G_GNUC_NULL_TERMINATED;
283
283
  VIPS_API
284
- int vips_sinh( VipsImage *in, VipsImage **out, ... )
284
+ int vips_sinh(VipsImage *in, VipsImage **out, ...)
285
285
  G_GNUC_NULL_TERMINATED;
286
286
  VIPS_API
287
- int vips_cosh( VipsImage *in, VipsImage **out, ... )
287
+ int vips_cosh(VipsImage *in, VipsImage **out, ...)
288
288
  G_GNUC_NULL_TERMINATED;
289
289
  VIPS_API
290
- int vips_tanh( VipsImage *in, VipsImage **out, ... )
290
+ int vips_tanh(VipsImage *in, VipsImage **out, ...)
291
291
  G_GNUC_NULL_TERMINATED;
292
292
  VIPS_API
293
- int vips_asinh( VipsImage *in, VipsImage **out, ... )
293
+ int vips_asinh(VipsImage *in, VipsImage **out, ...)
294
294
  G_GNUC_NULL_TERMINATED;
295
295
  VIPS_API
296
- int vips_acosh( VipsImage *in, VipsImage **out, ... )
296
+ int vips_acosh(VipsImage *in, VipsImage **out, ...)
297
297
  G_GNUC_NULL_TERMINATED;
298
298
  VIPS_API
299
- int vips_atanh( VipsImage *in, VipsImage **out, ... )
299
+ int vips_atanh(VipsImage *in, VipsImage **out, ...)
300
300
  G_GNUC_NULL_TERMINATED;
301
301
 
302
302
  VIPS_API
303
- int vips_complex( VipsImage *in, VipsImage **out,
304
- VipsOperationComplex cmplx, ... )
303
+ int vips_complex(VipsImage *in, VipsImage **out,
304
+ VipsOperationComplex cmplx, ...)
305
305
  G_GNUC_NULL_TERMINATED;
306
306
  VIPS_API
307
- int vips_polar( VipsImage *in, VipsImage **out, ... )
307
+ int vips_polar(VipsImage *in, VipsImage **out, ...)
308
308
  G_GNUC_NULL_TERMINATED;
309
309
  VIPS_API
310
- int vips_rect( VipsImage *in, VipsImage **out, ... )
310
+ int vips_rect(VipsImage *in, VipsImage **out, ...)
311
311
  G_GNUC_NULL_TERMINATED;
312
312
  VIPS_API
313
- int vips_conj( VipsImage *in, VipsImage **out, ... )
313
+ int vips_conj(VipsImage *in, VipsImage **out, ...)
314
314
  G_GNUC_NULL_TERMINATED;
315
315
 
316
316
  VIPS_API
317
- int vips_complex2( VipsImage *left, VipsImage *right, VipsImage **out,
318
- VipsOperationComplex2 cmplx, ... )
317
+ int vips_complex2(VipsImage *left, VipsImage *right, VipsImage **out,
318
+ VipsOperationComplex2 cmplx, ...)
319
319
  G_GNUC_NULL_TERMINATED;
320
320
  VIPS_API
321
- int vips_cross_phase( VipsImage *left, VipsImage *right, VipsImage **out, ... )
321
+ int vips_cross_phase(VipsImage *left, VipsImage *right, VipsImage **out, ...)
322
322
  G_GNUC_NULL_TERMINATED;
323
323
 
324
324
  VIPS_API
325
- int vips_complexget( VipsImage *in, VipsImage **out,
326
- VipsOperationComplexget get, ... )
325
+ int vips_complexget(VipsImage *in, VipsImage **out,
326
+ VipsOperationComplexget get, ...)
327
327
  G_GNUC_NULL_TERMINATED;
328
328
  VIPS_API
329
- int vips_real( VipsImage *in, VipsImage **out, ... )
329
+ int vips_real(VipsImage *in, VipsImage **out, ...)
330
330
  G_GNUC_NULL_TERMINATED;
331
331
  VIPS_API
332
- int vips_imag( VipsImage *in, VipsImage **out, ... )
332
+ int vips_imag(VipsImage *in, VipsImage **out, ...)
333
333
  G_GNUC_NULL_TERMINATED;
334
334
 
335
335
  VIPS_API
336
- int vips_complexform( VipsImage *left, VipsImage *right, VipsImage **out, ... )
336
+ int vips_complexform(VipsImage *left, VipsImage *right, VipsImage **out, ...)
337
337
  G_GNUC_NULL_TERMINATED;
338
338
 
339
339
  VIPS_API
340
- int vips_relational( VipsImage *left, VipsImage *right, VipsImage **out,
341
- VipsOperationRelational relational, ... )
340
+ int vips_relational(VipsImage *left, VipsImage *right, VipsImage **out,
341
+ VipsOperationRelational relational, ...)
342
342
  G_GNUC_NULL_TERMINATED;
343
343
  VIPS_API
344
- int vips_equal( VipsImage *left, VipsImage *right, VipsImage **out, ... )
344
+ int vips_equal(VipsImage *left, VipsImage *right, VipsImage **out, ...)
345
345
  G_GNUC_NULL_TERMINATED;
346
346
  VIPS_API
347
- int vips_notequal( VipsImage *left, VipsImage *right, VipsImage **out, ... )
347
+ int vips_notequal(VipsImage *left, VipsImage *right, VipsImage **out, ...)
348
348
  G_GNUC_NULL_TERMINATED;
349
349
  VIPS_API
350
- int vips_less( VipsImage *left, VipsImage *right, VipsImage **out, ... )
350
+ int vips_less(VipsImage *left, VipsImage *right, VipsImage **out, ...)
351
351
  G_GNUC_NULL_TERMINATED;
352
352
  VIPS_API
353
- int vips_lesseq( VipsImage *left, VipsImage *right, VipsImage **out, ... )
353
+ int vips_lesseq(VipsImage *left, VipsImage *right, VipsImage **out, ...)
354
354
  G_GNUC_NULL_TERMINATED;
355
355
  VIPS_API
356
- int vips_more( VipsImage *left, VipsImage *right, VipsImage **out, ... )
356
+ int vips_more(VipsImage *left, VipsImage *right, VipsImage **out, ...)
357
357
  G_GNUC_NULL_TERMINATED;
358
358
  VIPS_API
359
- int vips_moreeq( VipsImage *left, VipsImage *right, VipsImage **out, ... )
359
+ int vips_moreeq(VipsImage *left, VipsImage *right, VipsImage **out, ...)
360
360
  G_GNUC_NULL_TERMINATED;
361
361
  VIPS_API
362
- int vips_relational_const( VipsImage *in, VipsImage **out,
363
- VipsOperationRelational relational, const double *c, int n, ... )
362
+ int vips_relational_const(VipsImage *in, VipsImage **out,
363
+ VipsOperationRelational relational, const double *c, int n, ...)
364
364
  G_GNUC_NULL_TERMINATED;
365
365
  VIPS_API
366
- int vips_equal_const( VipsImage *in, VipsImage **out,
367
- const double *c, int n, ... )
366
+ int vips_equal_const(VipsImage *in, VipsImage **out,
367
+ const double *c, int n, ...)
368
368
  G_GNUC_NULL_TERMINATED;
369
369
  VIPS_API
370
- int vips_notequal_const( VipsImage *in, VipsImage **out,
371
- const double *c, int n, ... )
370
+ int vips_notequal_const(VipsImage *in, VipsImage **out,
371
+ const double *c, int n, ...)
372
372
  G_GNUC_NULL_TERMINATED;
373
373
  VIPS_API
374
- int vips_less_const( VipsImage *in, VipsImage **out,
375
- const double *c, int n, ... )
374
+ int vips_less_const(VipsImage *in, VipsImage **out,
375
+ const double *c, int n, ...)
376
376
  G_GNUC_NULL_TERMINATED;
377
377
  VIPS_API
378
- int vips_lesseq_const( VipsImage *in, VipsImage **out,
379
- const double *c, int n, ... )
378
+ int vips_lesseq_const(VipsImage *in, VipsImage **out,
379
+ const double *c, int n, ...)
380
380
  G_GNUC_NULL_TERMINATED;
381
381
  VIPS_API
382
- int vips_more_const( VipsImage *in, VipsImage **out,
383
- const double *c, int n, ... )
382
+ int vips_more_const(VipsImage *in, VipsImage **out,
383
+ const double *c, int n, ...)
384
384
  G_GNUC_NULL_TERMINATED;
385
385
  VIPS_API
386
- int vips_moreeq_const( VipsImage *in, VipsImage **out,
387
- const double *c, int n, ... )
386
+ int vips_moreeq_const(VipsImage *in, VipsImage **out,
387
+ const double *c, int n, ...)
388
388
  G_GNUC_NULL_TERMINATED;
389
389
  VIPS_API
390
- int vips_relational_const1( VipsImage *in, VipsImage **out,
391
- VipsOperationRelational relational, double c, ... )
390
+ int vips_relational_const1(VipsImage *in, VipsImage **out,
391
+ VipsOperationRelational relational, double c, ...)
392
392
  G_GNUC_NULL_TERMINATED;
393
393
  VIPS_API
394
- int vips_equal_const1( VipsImage *in, VipsImage **out, double c, ... )
394
+ int vips_equal_const1(VipsImage *in, VipsImage **out, double c, ...)
395
395
  G_GNUC_NULL_TERMINATED;
396
396
  VIPS_API
397
- int vips_notequal_const1( VipsImage *in, VipsImage **out, double c, ... )
397
+ int vips_notequal_const1(VipsImage *in, VipsImage **out, double c, ...)
398
398
  G_GNUC_NULL_TERMINATED;
399
399
  VIPS_API
400
- int vips_less_const1( VipsImage *in, VipsImage **out, double c, ... )
400
+ int vips_less_const1(VipsImage *in, VipsImage **out, double c, ...)
401
401
  G_GNUC_NULL_TERMINATED;
402
402
  VIPS_API
403
- int vips_lesseq_const1( VipsImage *in, VipsImage **out, double c, ... )
403
+ int vips_lesseq_const1(VipsImage *in, VipsImage **out, double c, ...)
404
404
  G_GNUC_NULL_TERMINATED;
405
405
  VIPS_API
406
- int vips_more_const1( VipsImage *in, VipsImage **out, double c, ... )
406
+ int vips_more_const1(VipsImage *in, VipsImage **out, double c, ...)
407
407
  G_GNUC_NULL_TERMINATED;
408
408
  VIPS_API
409
- int vips_moreeq_const1( VipsImage *in, VipsImage **out, double c, ... )
409
+ int vips_moreeq_const1(VipsImage *in, VipsImage **out, double c, ...)
410
410
  G_GNUC_NULL_TERMINATED;
411
411
 
412
412
  VIPS_API
413
- int vips_boolean( VipsImage *left, VipsImage *right, VipsImage **out,
414
- VipsOperationBoolean boolean, ... )
413
+ int vips_boolean(VipsImage *left, VipsImage *right, VipsImage **out,
414
+ VipsOperationBoolean boolean, ...)
415
415
  G_GNUC_NULL_TERMINATED;
416
416
  VIPS_API
417
- int vips_andimage( VipsImage *left, VipsImage *right, VipsImage **out, ... )
417
+ int vips_andimage(VipsImage *left, VipsImage *right, VipsImage **out, ...)
418
418
  G_GNUC_NULL_TERMINATED;
419
419
  VIPS_API
420
- int vips_orimage( VipsImage *left, VipsImage *right, VipsImage **out, ... )
420
+ int vips_orimage(VipsImage *left, VipsImage *right, VipsImage **out, ...)
421
421
  G_GNUC_NULL_TERMINATED;
422
422
  VIPS_API
423
- int vips_eorimage( VipsImage *left, VipsImage *right, VipsImage **out, ... )
423
+ int vips_eorimage(VipsImage *left, VipsImage *right, VipsImage **out, ...)
424
424
  G_GNUC_NULL_TERMINATED;
425
425
  VIPS_API
426
- int vips_lshift( VipsImage *left, VipsImage *right, VipsImage **out, ... )
426
+ int vips_lshift(VipsImage *left, VipsImage *right, VipsImage **out, ...)
427
427
  G_GNUC_NULL_TERMINATED;
428
428
  VIPS_API
429
- int vips_rshift( VipsImage *left, VipsImage *right, VipsImage **out, ... )
429
+ int vips_rshift(VipsImage *left, VipsImage *right, VipsImage **out, ...)
430
430
  G_GNUC_NULL_TERMINATED;
431
431
 
432
432
  VIPS_API
433
- int vips_boolean_const( VipsImage *in, VipsImage **out,
434
- VipsOperationBoolean boolean, const double *c, int n, ... )
433
+ int vips_boolean_const(VipsImage *in, VipsImage **out,
434
+ VipsOperationBoolean boolean, const double *c, int n, ...)
435
435
  G_GNUC_NULL_TERMINATED;
436
436
  VIPS_API
437
- int vips_andimage_const( VipsImage *in, VipsImage **out,
438
- const double *c, int n, ... )
437
+ int vips_andimage_const(VipsImage *in, VipsImage **out,
438
+ const double *c, int n, ...)
439
439
  G_GNUC_NULL_TERMINATED;
440
440
  VIPS_API
441
- int vips_orimage_const( VipsImage *in, VipsImage **out,
442
- const double *c, int n, ... )
441
+ int vips_orimage_const(VipsImage *in, VipsImage **out,
442
+ const double *c, int n, ...)
443
443
  G_GNUC_NULL_TERMINATED;
444
444
  VIPS_API
445
- int vips_eorimage_const( VipsImage *in, VipsImage **out,
446
- const double *c, int n, ... )
445
+ int vips_eorimage_const(VipsImage *in, VipsImage **out,
446
+ const double *c, int n, ...)
447
447
  G_GNUC_NULL_TERMINATED;
448
448
  VIPS_API
449
- int vips_lshift_const( VipsImage *in, VipsImage **out,
450
- const double *c, int n, ... )
449
+ int vips_lshift_const(VipsImage *in, VipsImage **out,
450
+ const double *c, int n, ...)
451
451
  G_GNUC_NULL_TERMINATED;
452
452
  VIPS_API
453
- int vips_rshift_const( VipsImage *in, VipsImage **out,
454
- const double *c, int n, ... )
453
+ int vips_rshift_const(VipsImage *in, VipsImage **out,
454
+ const double *c, int n, ...)
455
455
  G_GNUC_NULL_TERMINATED;
456
456
  VIPS_API
457
- int vips_boolean_const1( VipsImage *in, VipsImage **out,
458
- VipsOperationBoolean boolean, double c, ... )
457
+ int vips_boolean_const1(VipsImage *in, VipsImage **out,
458
+ VipsOperationBoolean boolean, double c, ...)
459
459
  G_GNUC_NULL_TERMINATED;
460
460
  VIPS_API
461
- int vips_andimage_const1( VipsImage *in, VipsImage **out, double c, ... )
461
+ int vips_andimage_const1(VipsImage *in, VipsImage **out, double c, ...)
462
462
  G_GNUC_NULL_TERMINATED;
463
463
  VIPS_API
464
- int vips_orimage_const1( VipsImage *in, VipsImage **out, double c, ... )
464
+ int vips_orimage_const1(VipsImage *in, VipsImage **out, double c, ...)
465
465
  G_GNUC_NULL_TERMINATED;
466
466
  VIPS_API
467
- int vips_eorimage_const1( VipsImage *in, VipsImage **out, double c, ... )
467
+ int vips_eorimage_const1(VipsImage *in, VipsImage **out, double c, ...)
468
468
  G_GNUC_NULL_TERMINATED;
469
469
  VIPS_API
470
- int vips_lshift_const1( VipsImage *in, VipsImage **out, double c, ... )
470
+ int vips_lshift_const1(VipsImage *in, VipsImage **out, double c, ...)
471
471
  G_GNUC_NULL_TERMINATED;
472
472
  VIPS_API
473
- int vips_rshift_const1( VipsImage *in, VipsImage **out, double c, ... )
473
+ int vips_rshift_const1(VipsImage *in, VipsImage **out, double c, ...)
474
474
  G_GNUC_NULL_TERMINATED;
475
475
 
476
476
  VIPS_API
477
- int vips_math2( VipsImage *left, VipsImage *right, VipsImage **out,
478
- VipsOperationMath2 math2, ... )
477
+ int vips_math2(VipsImage *left, VipsImage *right, VipsImage **out,
478
+ VipsOperationMath2 math2, ...)
479
479
  G_GNUC_NULL_TERMINATED;
480
480
  VIPS_API
481
- int vips_pow( VipsImage *left, VipsImage *right, VipsImage **out, ... )
481
+ int vips_pow(VipsImage *left, VipsImage *right, VipsImage **out, ...)
482
482
  G_GNUC_NULL_TERMINATED;
483
483
  VIPS_API
484
- int vips_wop( VipsImage *left, VipsImage *right, VipsImage **out, ... )
484
+ int vips_wop(VipsImage *left, VipsImage *right, VipsImage **out, ...)
485
485
  G_GNUC_NULL_TERMINATED;
486
486
  VIPS_API
487
- int vips_atan2( VipsImage *left, VipsImage *right, VipsImage **out, ... )
487
+ int vips_atan2(VipsImage *left, VipsImage *right, VipsImage **out, ...)
488
488
  G_GNUC_NULL_TERMINATED;
489
489
  VIPS_API
490
- int vips_math2_const( VipsImage *in, VipsImage **out,
491
- VipsOperationMath2 math2, const double *c, int n, ... )
490
+ int vips_math2_const(VipsImage *in, VipsImage **out,
491
+ VipsOperationMath2 math2, const double *c, int n, ...)
492
492
  G_GNUC_NULL_TERMINATED;
493
493
  VIPS_API
494
- int vips_pow_const( VipsImage *in, VipsImage **out,
495
- const double *c, int n, ... )
494
+ int vips_pow_const(VipsImage *in, VipsImage **out,
495
+ const double *c, int n, ...)
496
496
  G_GNUC_NULL_TERMINATED;
497
497
  VIPS_API
498
- int vips_wop_const( VipsImage *in, VipsImage **out,
499
- const double *c, int n, ... )
498
+ int vips_wop_const(VipsImage *in, VipsImage **out,
499
+ const double *c, int n, ...)
500
500
  G_GNUC_NULL_TERMINATED;
501
501
  VIPS_API
502
- int vips_atan2_const( VipsImage *in, VipsImage **out,
503
- const double *c, int n, ... )
502
+ int vips_atan2_const(VipsImage *in, VipsImage **out,
503
+ const double *c, int n, ...)
504
504
  G_GNUC_NULL_TERMINATED;
505
505
  VIPS_API
506
- int vips_math2_const1( VipsImage *in, VipsImage **out,
507
- VipsOperationMath2 math2, double c, ... )
506
+ int vips_math2_const1(VipsImage *in, VipsImage **out,
507
+ VipsOperationMath2 math2, double c, ...)
508
508
  G_GNUC_NULL_TERMINATED;
509
509
  VIPS_API
510
- int vips_pow_const1( VipsImage *in, VipsImage **out, double c, ... )
510
+ int vips_pow_const1(VipsImage *in, VipsImage **out, double c, ...)
511
511
  G_GNUC_NULL_TERMINATED;
512
512
  VIPS_API
513
- int vips_wop_const1( VipsImage *in, VipsImage **out, double c, ... )
513
+ int vips_wop_const1(VipsImage *in, VipsImage **out, double c, ...)
514
514
  G_GNUC_NULL_TERMINATED;
515
515
  VIPS_API
516
- int vips_atan2_const1( VipsImage *in, VipsImage **out, double c, ... )
516
+ int vips_atan2_const1(VipsImage *in, VipsImage **out, double c, ...)
517
517
  G_GNUC_NULL_TERMINATED;
518
518
 
519
519
  VIPS_API
520
- int vips_avg( VipsImage *in, double *out, ... )
520
+ int vips_avg(VipsImage *in, double *out, ...)
521
521
  G_GNUC_NULL_TERMINATED;
522
522
  VIPS_API
523
- int vips_deviate( VipsImage *in, double *out, ... )
523
+ int vips_deviate(VipsImage *in, double *out, ...)
524
524
  G_GNUC_NULL_TERMINATED;
525
525
  VIPS_API
526
- int vips_min( VipsImage *in, double *out, ... )
526
+ int vips_min(VipsImage *in, double *out, ...)
527
527
  G_GNUC_NULL_TERMINATED;
528
528
  VIPS_API
529
- int vips_max( VipsImage *in, double *out, ... )
529
+ int vips_max(VipsImage *in, double *out, ...)
530
530
  G_GNUC_NULL_TERMINATED;
531
531
  VIPS_API
532
- int vips_stats( VipsImage *in, VipsImage **out, ... )
532
+ int vips_stats(VipsImage *in, VipsImage **out, ...)
533
533
  G_GNUC_NULL_TERMINATED;
534
534
  VIPS_API
535
- int vips_measure( VipsImage *in, VipsImage **out, int h, int v, ... )
535
+ int vips_measure(VipsImage *in, VipsImage **out, int h, int v, ...)
536
536
  G_GNUC_NULL_TERMINATED;
537
537
  VIPS_API
538
- int vips_find_trim( VipsImage *in,
539
- int *left, int *top, int *width, int *height, ... )
538
+ int vips_find_trim(VipsImage *in,
539
+ int *left, int *top, int *width, int *height, ...)
540
540
  G_GNUC_NULL_TERMINATED;
541
541
  VIPS_API
542
- int vips_getpoint( VipsImage *in, double **vector, int *n, int x, int y, ... )
542
+ int vips_getpoint(VipsImage *in, double **vector, int *n, int x, int y, ...)
543
543
  G_GNUC_NULL_TERMINATED;
544
544
  VIPS_API
545
- int vips_hist_find( VipsImage *in, VipsImage **out, ... )
545
+ int vips_hist_find(VipsImage *in, VipsImage **out, ...)
546
546
  G_GNUC_NULL_TERMINATED;
547
547
  VIPS_API
548
- int vips_hist_find_ndim( VipsImage *in, VipsImage **out, ... )
548
+ int vips_hist_find_ndim(VipsImage *in, VipsImage **out, ...)
549
549
  G_GNUC_NULL_TERMINATED;
550
550
  VIPS_API
551
- int vips_hist_find_indexed( VipsImage *in, VipsImage *index,
552
- VipsImage **out, ... )
551
+ int vips_hist_find_indexed(VipsImage *in, VipsImage *index,
552
+ VipsImage **out, ...)
553
553
  G_GNUC_NULL_TERMINATED;
554
554
  VIPS_API
555
- int vips_hough_line( VipsImage *in, VipsImage **out, ... )
555
+ int vips_hough_line(VipsImage *in, VipsImage **out, ...)
556
556
  G_GNUC_NULL_TERMINATED;
557
557
  VIPS_API
558
- int vips_hough_circle( VipsImage *in, VipsImage **out, ... )
558
+ int vips_hough_circle(VipsImage *in, VipsImage **out, ...)
559
559
  G_GNUC_NULL_TERMINATED;
560
560
  VIPS_API
561
- int vips_project( VipsImage *in, VipsImage **columns, VipsImage **rows, ... )
561
+ int vips_project(VipsImage *in, VipsImage **columns, VipsImage **rows, ...)
562
562
  G_GNUC_NULL_TERMINATED;
563
563
  VIPS_API
564
- int vips_profile( VipsImage *in, VipsImage **columns, VipsImage **rows, ... )
564
+ int vips_profile(VipsImage *in, VipsImage **columns, VipsImage **rows, ...)
565
565
  G_GNUC_NULL_TERMINATED;
566
566
 
567
567
  #ifdef __cplusplus