oops in vips_getpoint() C wrapper
This commit is contained in:
parent
8d09db7cd4
commit
c4672f389b
13
ChangeLog
13
ChangeLog
@ -1,18 +1,19 @@
|
|||||||
11/2/15 started 8.0
|
11/2/15 started 8.0
|
||||||
- remove old doc stuff
|
- remove old doc stuff, lots of doc improvements
|
||||||
- add fliphor(), flipver(), rot90(), rot180(), rot270() convenience methods to
|
- add fliphor(), flipver(), rot90(), rot180(), rot270() convenience methods to
|
||||||
Python
|
Python
|
||||||
|
- python: use [] to index and slice image bands, use () to get a point
|
||||||
|
- c++: use [] to band index, () returns a vector<double>
|
||||||
- add shift option to cast
|
- add shift option to cast
|
||||||
- sRGB2scRGB and scRGB2sRGB scale 16-bit alpha to and from 8-bit
|
- sRGB2scRGB and scRGB2sRGB scale 16-bit alpha to and from 8-bit
|
||||||
- added vips_region_shrink(), fast x2 shrinker
|
- add magickload_buffer() [mcuelenaere]
|
||||||
- add magicload_buffer() [mcuelenaere]
|
|
||||||
- add vips_foreign_is_a_buffer() [mcuelenaere]
|
- add vips_foreign_is_a_buffer() [mcuelenaere]
|
||||||
- added test_foreign.py, plus more test images
|
- added test_foreign.py, plus more test images
|
||||||
|
- added vips_region_shrink(), fast x2 shrinker
|
||||||
- rewritten tiff writer is about 3 - 4x faster at making pyramids
|
- rewritten tiff writer is about 3 - 4x faster at making pyramids
|
||||||
- jpg, magick, png, tiff readers now use only 1 fd per input image
|
- jpg, magick, png, tiff readers now use only 1 fd per input image
|
||||||
- python: use [] to index and slice image bands
|
- added vips_info_set(), vips_progress_set(), vips_profile_set() ... bindings
|
||||||
- c++: use [] to band index, () returns a vector<double>
|
can now support all the vips command-line options if they wish
|
||||||
- added vips_info_set(), vips_progress_set(), vips_profile_set()
|
|
||||||
|
|
||||||
6/2/15 started 7.42.3
|
6/2/15 started 7.42.3
|
||||||
- bump version for back-compat ABI change
|
- bump version for back-compat ABI change
|
||||||
|
@ -214,7 +214,7 @@ vips_getpoint( VipsImage *in, double **vector, int *n, int x, int y, ... )
|
|||||||
result = vips_call_split( "getpoint", ap, in, &out_array, x, y );
|
result = vips_call_split( "getpoint", ap, in, &out_array, x, y );
|
||||||
va_end( ap );
|
va_end( ap );
|
||||||
|
|
||||||
if( !result )
|
if( result )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
area = VIPS_AREA( out_array );
|
area = VIPS_AREA( out_array );
|
||||||
|
Loading…
Reference in New Issue
Block a user