update function list in docs
thanks janko-m see https://github.com/jcupitt/libvips/issues/1097
This commit is contained in:
parent
5623bb1330
commit
f3de6a9521
@ -1,3 +1,6 @@
|
|||||||
|
23/9/18 started 8.7.1
|
||||||
|
- update function list in docs [janko-m]
|
||||||
|
|
||||||
23/12/17 started 8.7.0
|
23/12/17 started 8.7.0
|
||||||
- add magicksave, save image with libMagick [dlemstra]
|
- add magicksave, save image with libMagick [dlemstra]
|
||||||
- remove jpeg thumbnail from EXIF if "jpeg-thumbnail-data" has been removed by
|
- remove jpeg thumbnail from EXIF if "jpeg-thumbnail-data" has been removed by
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# also update the version number in the m4 macros below
|
# also update the version number in the m4 macros below
|
||||||
|
|
||||||
AC_INIT([vips], [8.7.0], [vipsip@jiscmail.ac.uk])
|
AC_INIT([vips], [8.7.1], [vipsip@jiscmail.ac.uk])
|
||||||
# required for gobject-introspection
|
# required for gobject-introspection
|
||||||
AC_PREREQ(2.62)
|
AC_PREREQ(2.62)
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ AC_CONFIG_MACRO_DIR([m4])
|
|||||||
# user-visible library versioning
|
# user-visible library versioning
|
||||||
m4_define([vips_major_version], [8])
|
m4_define([vips_major_version], [8])
|
||||||
m4_define([vips_minor_version], [7])
|
m4_define([vips_minor_version], [7])
|
||||||
m4_define([vips_micro_version], [0])
|
m4_define([vips_micro_version], [1])
|
||||||
m4_define([vips_version],
|
m4_define([vips_version],
|
||||||
[vips_major_version.vips_minor_version.vips_micro_version])
|
[vips_major_version.vips_minor_version.vips_micro_version])
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ VIPS_VERSION_STRING=$VIPS_VERSION-`date -u -r ChangeLog`
|
|||||||
# binary interface changes not backwards compatible?: reset age to 0
|
# binary interface changes not backwards compatible?: reset age to 0
|
||||||
|
|
||||||
LIBRARY_CURRENT=51
|
LIBRARY_CURRENT=51
|
||||||
LIBRARY_REVISION=0
|
LIBRARY_REVISION=1
|
||||||
LIBRARY_AGE=9
|
LIBRARY_AGE=9
|
||||||
|
|
||||||
# patched into include/vips/version.h
|
# patched into include/vips/version.h
|
||||||
|
@ -313,6 +313,11 @@
|
|||||||
<entry>flip an image</entry>
|
<entry>flip an image</entry>
|
||||||
<entry>vips_flip()</entry>
|
<entry>vips_flip()</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>transpose3d</entry>
|
||||||
|
<entry>transpose a volumetric image</entry>
|
||||||
|
<entry>vips_transpose3d()</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>insert</entry>
|
<entry>insert</entry>
|
||||||
<entry>insert image @sub into @main at @x, @y</entry>
|
<entry>insert image @sub into @main at @x, @y</entry>
|
||||||
@ -741,6 +746,21 @@
|
|||||||
<entry>load image from buffer with ImageMagick</entry>
|
<entry>load image from buffer with ImageMagick</entry>
|
||||||
<entry>vips_magickload_buffer()</entry>
|
<entry>vips_magickload_buffer()</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>magicksave</entry>
|
||||||
|
<entry>save file with ImageMagick</entry>
|
||||||
|
<entry>vips_magicksave()</entry>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>niftiload</entry>
|
||||||
|
<entry>load a NIfTI image</entry>
|
||||||
|
<entry>vips_niftiload()</entry>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>niftisave</entry>
|
||||||
|
<entry>save image in NIfTI format</entry>
|
||||||
|
<entry>vips_niftisave()</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>fitsload</entry>
|
<entry>fitsload</entry>
|
||||||
<entry>load a FITS image</entry>
|
<entry>load a FITS image</entry>
|
||||||
@ -906,6 +926,11 @@
|
|||||||
<entry>similarity transform of an image</entry>
|
<entry>similarity transform of an image</entry>
|
||||||
<entry>vips_similarity()</entry>
|
<entry>vips_similarity()</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>rotate</entry>
|
||||||
|
<entry>rotate an image by a number of degrees</entry>
|
||||||
|
<entry>vips_rotate()</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>resize</entry>
|
<entry>resize</entry>
|
||||||
<entry>resize an image</entry>
|
<entry>resize an image</entry>
|
||||||
@ -1156,6 +1181,16 @@
|
|||||||
<entry>approximate separable integer convolution</entry>
|
<entry>approximate separable integer convolution</entry>
|
||||||
<entry>vips_convasep()</entry>
|
<entry>vips_convasep()</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>sobel</entry>
|
||||||
|
<entry>Sobel edge detector</entry>
|
||||||
|
<entry>vips_sobel()</entry>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>canny</entry>
|
||||||
|
<entry>Canny edge detector</entry>
|
||||||
|
<entry>vips_canny()</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>fastcor</entry>
|
<entry>fastcor</entry>
|
||||||
<entry>fast correlation</entry>
|
<entry>fast correlation</entry>
|
||||||
|
Loading…
Reference in New Issue
Block a user