final doc fixups
and update cplusplus binding
This commit is contained in:
parent
6e6cabb6e0
commit
ba6f8044af
@ -1,5 +1,5 @@
|
||||
// headers for vips operations
|
||||
// Sun Nov 16 12:18:15 GMT 2014
|
||||
// Thu Dec 18 11:24:18 GMT 2014
|
||||
// this file is generated automatically, do not edit!
|
||||
|
||||
static void system( char * cmd_format , VOption *options = 0 )
|
||||
@ -276,7 +276,7 @@ VImage affine( std::vector<double> matrix , VOption *options = 0 )
|
||||
throw( VError );
|
||||
VImage similarity( VOption *options = 0 )
|
||||
throw( VError );
|
||||
VImage resize( double h_scale , double v_scale , VOption *options = 0 )
|
||||
VImage resize( double scale , VOption *options = 0 )
|
||||
throw( VError );
|
||||
VImage colourspace( VipsInterpretation space , VOption *options = 0 )
|
||||
throw( VError );
|
||||
@ -366,7 +366,7 @@ VImage spcor( VImage ref , VOption *options = 0 )
|
||||
throw( VError );
|
||||
VImage sharpen( VOption *options = 0 )
|
||||
throw( VError );
|
||||
VImage gaussblur( int radius , VOption *options = 0 )
|
||||
VImage gaussblur( double sigma , VOption *options = 0 )
|
||||
throw( VError );
|
||||
VImage fwfft( VOption *options = 0 )
|
||||
throw( VError );
|
||||
|
@ -1,5 +1,5 @@
|
||||
// bodies for vips operations
|
||||
// Sun Nov 16 12:18:23 GMT 2014
|
||||
// Thu Dec 18 11:24:06 GMT 2014
|
||||
// this file is generated automatically, do not edit!
|
||||
|
||||
void VImage::system( char * cmd_format , VOption *options )
|
||||
@ -1834,7 +1834,7 @@ VImage VImage::similarity( VOption *options )
|
||||
return( out );
|
||||
}
|
||||
|
||||
VImage VImage::resize( double h_scale , double v_scale , VOption *options )
|
||||
VImage VImage::resize( double scale , VOption *options )
|
||||
throw( VError )
|
||||
{
|
||||
VImage out;
|
||||
@ -1843,8 +1843,7 @@ VImage VImage::resize( double h_scale , double v_scale , VOption *options )
|
||||
(options ? options : VImage::option()) ->
|
||||
set( "in", *this ) ->
|
||||
set( "out", &out ) ->
|
||||
set( "h-scale", h_scale ) ->
|
||||
set( "v-scale", v_scale ) );
|
||||
set( "scale", scale ) );
|
||||
|
||||
return( out );
|
||||
}
|
||||
@ -2438,7 +2437,7 @@ VImage VImage::sharpen( VOption *options )
|
||||
return( out );
|
||||
}
|
||||
|
||||
VImage VImage::gaussblur( int radius , VOption *options )
|
||||
VImage VImage::gaussblur( double sigma , VOption *options )
|
||||
throw( VError )
|
||||
{
|
||||
VImage out;
|
||||
@ -2447,7 +2446,7 @@ VImage VImage::gaussblur( int radius , VOption *options )
|
||||
(options ? options : VImage::option()) ->
|
||||
set( "in", *this ) ->
|
||||
set( "out", &out ) ->
|
||||
set( "radius", radius ) );
|
||||
set( "sigma", sigma ) );
|
||||
|
||||
return( out );
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
For VIPS @VIPS_VERSION@.
|
||||
The latest version of this documentation can be found on the
|
||||
<ulink role="online-location"
|
||||
url="http://http://www.vips.ecs.soton.ac.uk/index.php?title=Documentation">VIPS website</ulink>.
|
||||
url="http://www.vips.ecs.soton.ac.uk/index.php?title=Documentation">VIPS website</ulink>.
|
||||
</releaseinfo>
|
||||
</bookinfo>
|
||||
|
||||
|
@ -1630,8 +1630,8 @@ vips_foreign_operation_init( void )
|
||||
*
|
||||
* Optional arguments:
|
||||
*
|
||||
* @all_frames: load all frames in sequence
|
||||
* @density: canvas resolution for rendering vector formats like SVG
|
||||
* @all_frames: %gboolean, load all frames in sequence
|
||||
* @density: string, canvas resolution for rendering vector formats like SVG
|
||||
*
|
||||
* Read in an image using libMagick, the ImageMagick library. This library can
|
||||
* read more than 80 file formats, including SVG, BMP, EPS, DICOM and many
|
||||
@ -1647,7 +1647,9 @@ vips_foreign_operation_init( void )
|
||||
* as a GIF). Set @all_frames to true to read the whole image sequence.
|
||||
*
|
||||
* @density is "WxH" in DPI, e.g. "600x300" or "600" (default is "72x72"). See
|
||||
* http://www.imagemagick.org/script/command-line-options.php#density
|
||||
* the [density
|
||||
* docs](http://www.imagemagick.org/script/command-line-options.php#density)
|
||||
* on the imagemagick website.
|
||||
*
|
||||
* See also: vips_image_new_from_file().
|
||||
*
|
||||
@ -1674,7 +1676,7 @@ vips_magickload( const char *filename, VipsImage **out, ... )
|
||||
*
|
||||
* Optional arguments:
|
||||
*
|
||||
* @page: load this page
|
||||
* @page: int, load this page
|
||||
*
|
||||
* Read a TIFF file into a VIPS image. It is a full baseline TIFF 6 reader,
|
||||
* with extensions for tiled images, multipage images, LAB colour space,
|
||||
|
Loading…
Reference in New Issue
Block a user