make optional args into bullets

make docs easier to read
This commit is contained in:
John Cupitt 2016-05-02 10:12:37 +01:00
parent 48ef215479
commit 1ae92bb15f
91 changed files with 362 additions and 364 deletions

View File

@ -475,7 +475,7 @@ vips_hist_find_init( VipsHistFind *hist_find )
* *
* Optional arguments: * Optional arguments:
* *
* @band: band to equalise * * @band: band to equalise
* *
* Find the histogram of @in. Find the histogram for band @band (producing a * Find the histogram of @in. Find the histogram for band @band (producing a
* one-band histogram), or for all bands (producing an n-band histogram) if * one-band histogram), or for all bands (producing an n-band histogram) if

View File

@ -323,7 +323,7 @@ vips_hist_find_ndim_init( VipsHistFindNDim *ndim )
* *
* Optional arguments: * Optional arguments:
* *
* @bins: number of bins to make on each axis * * @bins: number of bins to make on each axis
* *
* Make a one, two or three dimensional histogram of a 1, 2 or * Make a one, two or three dimensional histogram of a 1, 2 or
* 3 band image. Divide each axis into @bins bins .. ie. * 3 band image. Divide each axis into @bins bins .. ie.

View File

@ -275,9 +275,9 @@ vips_hough_circle_init( VipsHoughCircle *hough_circle )
* *
* Optional arguments: * Optional arguments:
* *
* @scale: scale down dimensions by this much * * @scale: scale down dimensions by this much
* @min_radius: smallest radius to search for * * @min_radius: smallest radius to search for
* @max_radius: largest radius to search for * * @max_radius: largest radius to search for
* *
* Find the circular Hough transform of an image. @in must be one band, with * Find the circular Hough transform of an image. @in must be one band, with
* non-zero pixels for image edges. @out is three-band, with the third channel * non-zero pixels for image edges. @out is three-band, with the third channel

View File

@ -169,8 +169,8 @@ vips_hough_line_init( VipsHoughLine *hough_line )
* *
* Optional arguments: * Optional arguments:
* *
* @width: horizontal size of parameter space * * @width: horizontal size of parameter space
* @height: vertical size of parameter space * * @height: vertical size of parameter space
* *
* Find the line Hough transform for @in. @in must have one band. @out has one * Find the line Hough transform for @in. @in must have one band. @out has one
* band, with pixels being the number of votes for that line. The X dimension * band, with pixels being the number of votes for that line. The X dimension

View File

@ -448,7 +448,7 @@ vips_linearv( VipsImage *in, VipsImage **out,
* *
* Optional arguments: * Optional arguments:
* *
* @uchar: output uchar pixels * * @uchar: output uchar pixels
* *
* Pass an image through a linear transform, ie. (@out = @in * @a + @b). Output * Pass an image through a linear transform, ie. (@out = @in * @a + @b). Output
* is float for integer input, double for double input, complex for * is float for integer input, double for double input, complex for
@ -489,7 +489,7 @@ vips_linear( VipsImage *in, VipsImage **out, double *a, double *b, int n, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @uchar: output uchar pixels * * @uchar: output uchar pixels
* *
* Run vips_linear() with a single constant. * Run vips_linear() with a single constant.
* *

View File

@ -486,12 +486,12 @@ vips_max_init( VipsMax *max )
* *
* Optional arguments: * Optional arguments:
* *
* @x: horizontal position of maximum * * @x: horizontal position of maximum
* @y: vertical position of maximum * * @y: vertical position of maximum
* @size: number of maxima to find * * @size: number of maxima to find
* @out_array: return array of maximum values * * @out_array: return array of maximum values
* @x_array: corresponding horizontal positions * * @x_array: corresponding horizontal positions
* @y_array: corresponding vertical positions * * @y_array: corresponding vertical positions
* *
* This operation finds the maximum value in an image. * This operation finds the maximum value in an image.
* *

View File

@ -269,10 +269,10 @@ vips_measure_init( VipsMeasure *measure )
* *
* Optional arguments: * Optional arguments:
* *
* @left: area of image containing chart * * @left: area of image containing chart
* @top: area of image containing chart * * @top: area of image containing chart
* @width: area of image containing chart * * @width: area of image containing chart
* @height: area of image containing chart * * @height: area of image containing chart
* *
* Analyse a grid of colour patches, producing an array of patch averages. * Analyse a grid of colour patches, producing an array of patch averages.
* The mask has a row for each measured patch and a column for each image * The mask has a row for each measured patch and a column for each image

View File

@ -489,12 +489,12 @@ vips_min_init( VipsMin *min )
* *
* Optional arguments: * Optional arguments:
* *
* @x: horizontal position of minimum * * @x: horizontal position of minimum
* @y: vertical position of minimum * * @y: vertical position of minimum
* @size: number of minima to find * * @size: number of minima to find
* @out_array: return array of minimum values * * @out_array: return array of minimum values
* @x_array: corresponding horizontal positions * * @x_array: corresponding horizontal positions
* @y_array: corresponding vertical positions * * @y_array: corresponding vertical positions
* *
* This operation finds the minimum value in an image. * This operation finds the minimum value in an image.
* *

View File

@ -625,7 +625,7 @@ vips_colourspace_init( VipsColourspace *colourspace )
* *
* Optional arguments: * Optional arguments:
* *
* @source_space: input colour space * * @source_space: input colour space
* *
* This operation looks at the interpretation field of @in (or uses * This operation looks at the interpretation field of @in (or uses
* @source_space, if set) and runs * @source_space, if set) and runs

View File

@ -1255,10 +1255,10 @@ vips_icc_ac2rc( VipsImage *in, VipsImage **out, const char *profile_filename )
* *
* Optional arguments: * Optional arguments:
* *
* @input_profile: get the input profile from here * * @input_profile: get the input profile from here
* @intent: transform with this intent * * @intent: transform with this intent
* @embedded: use profile embedded in input image * * @embedded: use profile embedded in input image
* @pcs: use XYZ or LAB PCS * * @pcs: use XYZ or LAB PCS
* *
* Import an image from device space to D65 LAB with an ICC profile. If @pcs is * Import an image from device space to D65 LAB with an ICC profile. If @pcs is
* set to #VIPS_PCS_XYZ, use CIE XYZ PCS instead. * set to #VIPS_PCS_XYZ, use CIE XYZ PCS instead.
@ -1294,10 +1294,10 @@ vips_icc_import( VipsImage *in, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @intent: transform with this intent * * @intent: transform with this intent
* @depth: depth of output image in bits * * @depth: depth of output image in bits
* @output_profile: get the output profile from here * * @output_profile: get the output profile from here
* @pcs: use XYZ or LAB PCS * * @pcs: use XYZ or LAB PCS
* *
* Export an image from D65 LAB to device space with an ICC profile. * Export an image from D65 LAB to device space with an ICC profile.
* If @pcs is * If @pcs is
@ -1330,10 +1330,10 @@ vips_icc_export( VipsImage *in, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @input_profile: get the input profile from here * * @input_profile: get the input profile from here
* @intent: transform with this intent * * @intent: transform with this intent
* @depth: depth of output image in bits * * @depth: depth of output image in bits
* @embedded: use profile embedded in input image * * @embedded: use profile embedded in input image
* *
* Transform an image with a pair of ICC profiles. The input image is moved to * Transform an image with a pair of ICC profiles. The input image is moved to
* profile-connection space with the input profile and then to the output * profile-connection space with the input profile and then to the output

View File

@ -268,7 +268,7 @@ vips_scRGB2BW_init( VipsscRGB2BW *scRGB2BW )
* *
* Optional arguments: * Optional arguments:
* *
* @depth: depth of output image in bits * * @depth: depth of output image in bits
* *
* Convert an scRGB image to greyscale. Set @depth to 16 to get 16-bit output. * Convert an scRGB image to greyscale. Set @depth to 16 to get 16-bit output.
* *

View File

@ -296,7 +296,7 @@ vips_scRGB2sRGB_init( VipsscRGB2sRGB *scRGB2sRGB )
* *
* Optional arguments: * Optional arguments:
* *
* @depth: depth of output image in bits * * @depth: depth of output image in bits
* *
* Convert an scRGB image to sRGB. Set @depth to 16 to get 16-bit output. * Convert an scRGB image to sRGB. Set @depth to 16 to get 16-bit output.
* *

View File

@ -397,13 +397,13 @@ vips_arrayjoinv( VipsImage **in, VipsImage **out, int n, va_list ap )
* *
* Optional arguments: * Optional arguments:
* *
* @across: number of images per row * * @across: number of images per row
* @shim: space between images, in pixels * * @shim: space between images, in pixels
* @background: background ink colour * * @background: background ink colour
* @halign: low, centre or high alignment * * @halign: low, centre or high alignment
* @valign: low, centre or high alignment * * @valign: low, centre or high alignment
* @hspacing: horizontal distance between images * * @hspacing: horizontal distance between images
* @vspacing: vertical distance between images * * @vspacing: vertical distance between images
* *
* Lay out the images in @in in a grid. The grid is @across images across and * Lay out the images in @in in a grid. The grid is @across images across and
* however high is necessary to use up all of @in. Images are set down * however high is necessary to use up all of @in. Images are set down

View File

@ -214,7 +214,7 @@ vips_autorot_init( VipsAutorot *autorot )
* *
* Optional arguments: * Optional arguments:
* *
* @angle: output #VipsAngle the image was rotated by * * @angle: output #VipsAngle the image was rotated by
* *
* Look at the exif tags and rotate the image to make it upright. The * Look at the exif tags and rotate the image to make it upright. The
* orientation tag is removed from @out to prevent accidental double rotation. * orientation tag is removed from @out to prevent accidental double rotation.

View File

@ -186,7 +186,7 @@ vips_bandfold_init( VipsBandfold *bandfold )
* *
* Optional arguments: * Optional arguments:
* *
* @factor: fold by this factor * * @factor: fold by this factor
* *
* Fold up an image horizontally: width is collapsed into bands. * Fold up an image horizontally: width is collapsed into bands.
* Use @factor to set how much to fold by: @factor 3, for example, will make * Use @factor to set how much to fold by: @factor 3, for example, will make

View File

@ -286,7 +286,7 @@ vips_bandrankv( VipsImage **in, VipsImage **out, int n, va_list ap )
* *
* Optional arguments: * Optional arguments:
* *
* @index: pick this index from list of sorted values * * @index: pick this index from list of sorted values
* *
* Sorts the images @in band-element-wise, then outputs an * Sorts the images @in band-element-wise, then outputs an
* image in which each band element is selected from the sorted list by the * image in which each band element is selected from the sorted list by the

View File

@ -189,7 +189,7 @@ vips_bandunfold_init( VipsBandunfold *bandunfold )
* *
* Optional arguments: * Optional arguments:
* *
* @factor: unfold by this factor * * @factor: unfold by this factor
* *
* Unfold image bands into x axis. * Unfold image bands into x axis.
* Use @factor to set how much to unfold by: @factor 3, for example, will make * Use @factor to set how much to unfold by: @factor 3, for example, will make

View File

@ -144,9 +144,9 @@ vips_cache_init( VipsCache *cache )
* *
* Optional arguments: * Optional arguments:
* *
* @tile_width: width of tiles in cache * * @tile_width: width of tiles in cache
* @tile_height: height of tiles in cache * * @tile_height: height of tiles in cache
* @max_tiles: maximum number of tiles to cache * * @max_tiles: maximum number of tiles to cache
* *
* This operation behaves rather like vips_copy() between images * This operation behaves rather like vips_copy() between images
* @in and @out, except that it keeps a cache of computed pixels. * @in and @out, except that it keeps a cache of computed pixels.

View File

@ -587,7 +587,7 @@ vips_castv( VipsImage *in, VipsImage **out, VipsBandFormat format, va_list ap )
* *
* Optional arguments: * Optional arguments:
* *
* @shift: integer values are shifted * * @shift: integer values are shifted
* *
* Convert @in to @format. You can convert between any pair of formats. * Convert @in to @format. You can convert between any pair of formats.
* Floats are truncated (not rounded). Out of range values are clipped. * Floats are truncated (not rounded). Out of range values are clipped.

View File

@ -366,16 +366,16 @@ vips_copy_init( VipsCopy *copy )
* *
* Optional arguments: * Optional arguments:
* *
* @width: set image width * * @width: set image width
* @height: set image height * * @height: set image height
* @bands: set image bands * * @bands: set image bands
* @format: set image format * * @format: set image format
* @coding: set image coding * * @coding: set image coding
* @interpretation: set image interpretation * * @interpretation: set image interpretation
* @xres: set image xres * * @xres: set image xres
* @yres: set image yres * * @yres: set image yres
* @xoffset: set image xoffset * * @xoffset: set image xoffset
* @yoffset: set image yoffset * * @yoffset: set image yoffset
* *
* Copy an image, optionally modifying the header. VIPS copies images by * Copy an image, optionally modifying the header. VIPS copies images by
* copying pointers, so this operation is instant, even for very large images. * copying pointers, so this operation is instant, even for very large images.

View File

@ -627,8 +627,8 @@ vips_embed_init( VipsEmbed *embed )
* *
* Optional arguments: * Optional arguments:
* *
* @extend: #VipsExtend to generate the edge pixels (default: black) * * @extend: #VipsExtend to generate the edge pixels (default: black)
* @background: #VipsArrayDouble colour for edge pixels * * @background: #VipsArrayDouble colour for edge pixels
* *
* The opposite of vips_extract_area(): embed @in within an image of size * The opposite of vips_extract_area(): embed @in within an image of size
* @width by @height at position @x, @y. * @width by @height at position @x, @y.

View File

@ -455,7 +455,7 @@ vips_extract_band_init( VipsExtractBand *extract )
* *
* Optional arguments: * Optional arguments:
* *
* @n: number of bands to extract * * @n: number of bands to extract
* *
* Extract a band or bands from an image. Extracting out of range is an error. * Extract a band or bands from an image. Extracting out of range is an error.
* *

View File

@ -409,8 +409,8 @@ vips_flatten_init( VipsFlatten *flatten )
* *
* Optional arguments: * Optional arguments:
* *
* @background: #VipsArrayDouble colour for new pixels * * @background: #VipsArrayDouble colour for new pixels
* @max_alpha: %gdouble, maximum value for alpha * * @max_alpha: %gdouble, maximum value for alpha
* *
* Take the last band of @in as an alpha and use it to blend the * Take the last band of @in as an alpha and use it to blend the
* remaining channels with @background. * remaining channels with @background.

View File

@ -168,7 +168,7 @@ vips_gamma_init( VipsGamma *gamma )
* *
* Optional arguments: * Optional arguments:
* *
* @exponent: gamma, default 1.0 / 2.4 * * @exponent: gamma, default 1.0 / 2.4
* *
* Calculate @in ** (1 / @exponent), normalising to the maximum range of the * Calculate @in ** (1 / @exponent), normalising to the maximum range of the
* input type. For float types use 1.0 as the maximum. * input type. For float types use 1.0 as the maximum.

View File

@ -517,7 +517,7 @@ vips_ifthenelse_init( VipsIfthenelse *ifthenelse )
* *
* Optional arguments: * Optional arguments:
* *
* @blend: blend smoothly between @in1 and @in2 * * @blend: blend smoothly between @in1 and @in2
* *
* This operation scans the condition image @cond * This operation scans the condition image @cond
* and uses it to select pixels from either the then image @in1 or the else * and uses it to select pixels from either the then image @in1 or the else

View File

@ -573,8 +573,8 @@ vips_insert_init( VipsInsert *insert )
* *
* Optional arguments: * Optional arguments:
* *
* @expand: expand output to hold whole of both images * * @expand: expand output to hold whole of both images
* @background: colour for new pixels * * @background: colour for new pixels
* *
* Insert @sub into @main at position @x, @y. * Insert @sub into @main at position @x, @y.
* *

View File

@ -296,10 +296,10 @@ vips_join_init( VipsJoin *join )
* *
* Optional arguments: * Optional arguments:
* *
* @expand: %TRUE to expand the output image to hold all of the input pixels * * @expand: %TRUE to expand the output image to hold all of the input pixels
* @shim: space between images, in pixels * * @shim: space between images, in pixels
* @background: background ink colour * * @background: background ink colour
* @align: low, centre or high alignment * * @align: low, centre or high alignment
* *
* Join @in1 and @in2 together, left-right or up-down depending on the value * Join @in1 and @in2 together, left-right or up-down depending on the value
* of @direction. * of @direction.

View File

@ -269,7 +269,7 @@ vips_msb_init( VipsMsb *msb )
* *
* Optional arguments: * Optional arguments:
* *
* @band: msb just this band * * @band: msb just this band
* *
* Turn any integer image to 8-bit unsigned char by discarding all but the most * Turn any integer image to 8-bit unsigned char by discarding all but the most
* significant byte. Signed values are converted to unsigned by adding 128. * significant byte. Signed values are converted to unsigned by adding 128.

View File

@ -273,7 +273,7 @@ vips_premultiply_init( VipsPremultiply *premultiply )
* *
* Optional arguments: * Optional arguments:
* *
* @max_alpha: %gdouble, maximum value for alpha * * @max_alpha: %gdouble, maximum value for alpha
* *
* Premultiplies any alpha channel. * Premultiplies any alpha channel.
* The final band is taken to be the alpha * The final band is taken to be the alpha

View File

@ -291,7 +291,7 @@ vips_rot45_init( VipsRot45 *rot45 )
* *
* Optional arguments: * Optional arguments:
* *
* @angle: rotation angle * * @angle: rotation angle
* *
* Rotate @in by a multiple of 45 degrees. Odd-length sides and square images * Rotate @in by a multiple of 45 degrees. Odd-length sides and square images
* only. * only.

View File

@ -183,8 +183,8 @@ vips_scale_init( VipsScale *scale )
* *
* Optional arguments: * Optional arguments:
* *
* @log: log scale pixels * * @log: log scale pixels
* @exp: exponent for log scale * * @exp: exponent for log scale
* *
* Search the image for the maximum and minimum value, then return the image * Search the image for the maximum and minimum value, then return the image
* as unsigned 8-bit, scaled so that the maximum value is 255 and the * as unsigned 8-bit, scaled so that the maximum value is 255 and the

View File

@ -364,9 +364,9 @@ vips_sequential_init( VipsSequential *sequential )
* *
* Optional arguments: * Optional arguments:
* *
* @trace: trace requests * * @trace: trace requests
* @strip_height: height of cache strips * * @strip_height: height of cache strips
* @access: access pattern * * @access: access pattern
* *
* This operation behaves rather like vips_copy() between images * This operation behaves rather like vips_copy() between images
* @in and @out, except that it checks that pixels are only requested * @in and @out, except that it checks that pixels are only requested

View File

@ -314,7 +314,7 @@ vips_subsample_init( VipsSubsample *subsample )
* *
* Optional arguments: * Optional arguments:
* *
* @point: turn on point sample mode * * @point: turn on point sample mode
* *
* Subsample an image by an integer fraction. This is fast, nearest-neighbour * Subsample an image by an integer fraction. This is fast, nearest-neighbour
* shrink. * shrink.

View File

@ -824,12 +824,12 @@ vips_tile_cache_init( VipsTileCache *cache )
* *
* Optional arguments: * Optional arguments:
* *
* @tile_width: width of tiles in cache * * @tile_width: width of tiles in cache
* @tile_height: height of tiles in cache * * @tile_height: height of tiles in cache
* @max_tiles: maximum number of tiles to cache * * @max_tiles: maximum number of tiles to cache
* @access: hint expected access pattern #VipsAccess * * @access: hint expected access pattern #VipsAccess
* @threaded: allow many threads * * @threaded: allow many threads
* @persistent: don't drop cache at end of computation * * @persistent: don't drop cache at end of computation
* *
* This operation behaves rather like vips_copy() between images * This operation behaves rather like vips_copy() between images
* @in and @out, except that it keeps a cache of computed pixels. * @in and @out, except that it keeps a cache of computed pixels.
@ -1018,9 +1018,9 @@ vips_line_cache_init( VipsLineCache *cache )
* *
* Optional arguments: * Optional arguments:
* *
* @access: hint expected access pattern #VipsAccess * * @access: hint expected access pattern #VipsAccess
* @tile_height: height of tiles in cache * * @tile_height: height of tiles in cache
* @threaded: allow many threads * * @threaded: allow many threads
* *
* This operation behaves rather like vips_copy() between images * This operation behaves rather like vips_copy() between images
* @in and @out, except that it keeps a cache of computed scanlines. * @in and @out, except that it keeps a cache of computed scanlines.

View File

@ -283,7 +283,7 @@ vips_unpremultiply_init( VipsUnpremultiply *unpremultiply )
* *
* Optional arguments: * Optional arguments:
* *
* @max_alpha: %gdouble, maximum value for alpha * * @max_alpha: %gdouble, maximum value for alpha
* *
* Unpremultiplies any alpha channel. * Unpremultiplies any alpha channel.
* The final band is taken to be the alpha * The final band is taken to be the alpha

View File

@ -150,8 +150,8 @@ vips_wrap_init( VipsWrap *wrap )
* *
* Optional arguments: * Optional arguments:
* *
* @x: horizontal displacement * * @x: horizontal displacement
* @y: vertical displacement * * @y: vertical displacement
* *
* Slice an image up and move the segments about so that the pixel that was * Slice an image up and move the segments about so that the pixel that was
* at 0, 0 is now at @x, @y. If @x and @y are not set, they default to the * at 0, 0 is now at @x, @y. If @x and @y are not set, they default to the

View File

@ -175,9 +175,9 @@ vips_conv_init( VipsConv *conv )
* *
* Optional arguments: * Optional arguments:
* *
* @precision: calculation accuracy * * @precision: calculation accuracy
* @layers: number of layers for approximation * * @layers: number of layers for approximation
* @cluster: cluster lines closer than this distance * * @cluster: cluster lines closer than this distance
* *
* Convolution. * Convolution.
* *

View File

@ -143,9 +143,9 @@ vips_convsep_init( VipsConvsep *convsep )
* *
* Optional arguments: * Optional arguments:
* *
* @precision: calculation accuracy * * @precision: calculation accuracy
* @layers: number of layers for approximation * * @layers: number of layers for approximation
* @cluster: cluster lines closer than this distance * * @cluster: cluster lines closer than this distance
* *
* Perform a separable convolution of @in with @mask. * Perform a separable convolution of @in with @mask.
* See vips_conv() for a detailed description. * See vips_conv() for a detailed description.

View File

@ -168,8 +168,8 @@ vips_gaussblur_init( VipsGaussblur *gaussblur )
* *
* Optional arguments: * Optional arguments:
* *
* @precision: #VipsPrecision for blur, default VIPS_PRECISION_INTEGER * * @precision: #VipsPrecision for blur, default VIPS_PRECISION_INTEGER
* @min_ampl: minimum amplitude, default 0.2 * * @min_ampl: minimum amplitude, default 0.2
* *
* This operator runs vips_gaussmat() and vips_convsep() for you on an image. * This operator runs vips_gaussmat() and vips_convsep() for you on an image.
* Set @min_ampl smaller to generate a larger, more accurate mask. Set @sigma * Set @min_ampl smaller to generate a larger, more accurate mask. Set @sigma

View File

@ -394,12 +394,12 @@ vips_sharpen_init( VipsSharpen *sharpen )
* *
* Optional arguments: * Optional arguments:
* *
* @sigma: sigma of gaussian * * @sigma: sigma of gaussian
* @x1: flat/jaggy threshold * * @x1: flat/jaggy threshold
* @y2: maximum amount of brightening * * @y2: maximum amount of brightening
* @y3: maximum amount of darkening * * @y3: maximum amount of darkening
* @m1: slope for flat areas * * @m1: slope for flat areas
* @m2: slope for jaggy areas * * @m2: slope for jaggy areas
* *
* Selectively sharpen the L channel of a LAB image. The input image is * Selectively sharpen the L channel of a LAB image. The input image is
* transformed to #VIPS_INTERPRETATION_LABS. * transformed to #VIPS_INTERPRETATION_LABS.

View File

@ -162,7 +162,7 @@ vips_black_init( VipsBlack *black )
* *
* Optional arguments: * Optional arguments:
* *
* @bands: output bands * * @bands: output bands
* *
* Make a black unsigned char image of a specified size. * Make a black unsigned char image of a specified size.
* *

View File

@ -123,8 +123,8 @@ vips_eye_init( VipsEye *eye )
* *
* Optional arguments: * Optional arguments:
* *
* @factor: maximum spatial frequency * * @factor: maximum spatial frequency
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Create a test pattern with increasing spatial frequence in X and * Create a test pattern with increasing spatial frequence in X and
* amplitude in Y. @factor should be between 0 and 1 and determines the * amplitude in Y. @factor should be between 0 and 1 and determines the

View File

@ -234,8 +234,8 @@ vips_gaussmat_init( VipsGaussmat *gaussmat )
* *
* Optional arguments: * Optional arguments:
* *
* @separable: generate a separable gaussian * * @separable: generate a separable gaussian
* @precision: #VipsPrecision for @out * * @precision: #VipsPrecision for @out
* *
* Creates a circularly symmetric Gaussian image of radius * Creates a circularly symmetric Gaussian image of radius
* @sigma. The size of the mask is determined by the variable @min_ampl; * @sigma. The size of the mask is determined by the variable @min_ampl;

View File

@ -195,8 +195,8 @@ vips_gaussnoise_init( VipsGaussnoise *gaussnoise )
* *
* Optional arguments: * Optional arguments:
* *
* @mean: mean of generated pixels * * @mean: mean of generated pixels
* @sigma: standard deviation of generated pixels * * @sigma: standard deviation of generated pixels
* *
* Make a one band float image of gaussian noise with the specified * Make a one band float image of gaussian noise with the specified
* distribution. The noise distribution is created by averaging 12 random * distribution. The noise distribution is created by averaging 12 random

View File

@ -107,7 +107,7 @@ vips_grey_init( VipsGrey *grey )
* *
* Optional arguments: * Optional arguments:
* *
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Create a one-band float image with the left-most column zero and the * Create a one-band float image with the left-most column zero and the
* right-most 1. Intermediate pixels are a linear ramp. * right-most 1. Intermediate pixels are a linear ramp.

View File

@ -178,9 +178,9 @@ vips_identity_init( VipsIdentity *identity )
* *
* Optional arguments: * Optional arguments:
* *
* @bands: number of bands to create * * @bands: number of bands to create
* @ushort: %TRUE for an unsigned short identity * * @ushort: %TRUE for an unsigned short identity
* @size: number of LUT elements for a ushort image * * @size: number of LUT elements for a ushort image
* *
* Creates an identity lookup table, ie. one which will leave an image * Creates an identity lookup table, ie. one which will leave an image
* unchanged when applied with vips_maplut(). Each entry in the table has a * unchanged when applied with vips_maplut(). Each entry in the table has a

View File

@ -314,7 +314,7 @@ vips_invertlut_init( VipsInvertlut *lut )
* *
* Optional arguments: * Optional arguments:
* *
* @size: generate this much * * @size: generate this much
* *
* Given a mask of target values and real values, generate a LUT which * Given a mask of target values and real values, generate a LUT which
* will map reals to targets. Handy for linearising images from * will map reals to targets. Handy for linearising images from

View File

@ -251,8 +251,8 @@ vips_logmat_init( VipsLogmat *logmat )
* *
* Optional arguments: * Optional arguments:
* *
* @separable: generate a separable mask * * @separable: generate a separable mask
* @precision: #VipsPrecision for @out * * @precision: #VipsPrecision for @out
* *
* Creates a circularly symmetric Laplacian of Gaussian mask * Creates a circularly symmetric Laplacian of Gaussian mask
* of radius * of radius

View File

@ -127,10 +127,10 @@ vips_mask_butterworth_init( VipsMaskButterworth *butterworth )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make an butterworth high- or low-pass filter, that is, one with a variable, * Make an butterworth high- or low-pass filter, that is, one with a variable,
* smooth transition * smooth transition

View File

@ -171,10 +171,10 @@ vips_mask_butterworth_band_init(
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make an butterworth band-pass or band-reject filter, that is, one with a * Make an butterworth band-pass or band-reject filter, that is, one with a
* variable, smooth transition positioned at @frequency_cutoff_x, * variable, smooth transition positioned at @frequency_cutoff_x,

View File

@ -131,10 +131,10 @@ vips_mask_butterworth_ring_init(
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make a butterworth ring-pass or ring-reject filter, that is, one with a * Make a butterworth ring-pass or ring-reject filter, that is, one with a
* variable, * variable,

View File

@ -114,10 +114,10 @@ vips_mask_fractal_init( VipsMaskFractal *fractal )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* This operation should be used to create fractal images by filtering the * This operation should be used to create fractal images by filtering the
* power spectrum of Gaussian white noise. See vips_gaussnoise(). * power spectrum of Gaussian white noise. See vips_gaussnoise().

View File

@ -116,10 +116,10 @@ vips_mask_gaussian_init( VipsMaskGaussian *gaussian )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make a gaussian high- or low-pass filter, that is, one with a variable, * Make a gaussian high- or low-pass filter, that is, one with a variable,
* smooth transition positioned at @frequency_cutoff. * smooth transition positioned at @frequency_cutoff.

View File

@ -155,10 +155,10 @@ vips_mask_gaussian_band_init( VipsMaskGaussianBand *gaussian_band )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make a gaussian band-pass or band-reject filter, that is, one with a * Make a gaussian band-pass or band-reject filter, that is, one with a
* variable, smooth transition positioned at @frequency_cutoff_x, * variable, smooth transition positioned at @frequency_cutoff_x,

View File

@ -124,10 +124,10 @@ vips_mask_gaussian_ring_init( VipsMaskGaussianRing *gaussian_ring )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make a gaussian ring-pass or ring-reject filter, that is, one with a * Make a gaussian ring-pass or ring-reject filter, that is, one with a
* variable, smooth transition positioned at @frequency_cutoff of width * variable, smooth transition positioned at @frequency_cutoff of width

View File

@ -105,10 +105,10 @@ vips_mask_ideal_init( VipsMaskIdeal *ideal )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make an ideal high- or low-pass filter, that is, one with a sharp cutoff * Make an ideal high- or low-pass filter, that is, one with a sharp cutoff
* positioned at @frequency_cutoff, where @frequency_cutoff is in * positioned at @frequency_cutoff, where @frequency_cutoff is in

View File

@ -137,10 +137,10 @@ vips_mask_ideal_band_init( VipsMaskIdealBand *ideal_band )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make an ideal band-pass or band-reject filter, that is, one with a * Make an ideal band-pass or band-reject filter, that is, one with a
* sharp cutoff around the point @frequency_cutoff_x, @frequency_cutoff_y, * sharp cutoff around the point @frequency_cutoff_x, @frequency_cutoff_y,

View File

@ -120,10 +120,10 @@ vips_mask_ideal_ring_init( VipsMaskIdealRing *ideal_ring )
* *
* Optional arguments: * Optional arguments:
* *
* @nodc: don't set the DC pixel * * @nodc: don't set the DC pixel
* @reject: invert the filter sense * * @reject: invert the filter sense
* @optical: coordinates in optical space * * @optical: coordinates in optical space
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Make an ideal ring-pass or ring-reject filter, that is, one with a sharp * Make an ideal ring-pass or ring-reject filter, that is, one with a sharp
* ring positioned at @frequency_cutoff of width @width, where * ring positioned at @frequency_cutoff of width @width, where

View File

@ -154,9 +154,9 @@ vips_sines_init( VipsSines *sines )
* *
* Optional arguments: * Optional arguments:
* *
* @hfreq: horizontal frequency * * @hfreq: horizontal frequency
* @vreq: vertical frequency * * @vreq: vertical frequency
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Creates a float one band image of the a sine waveform in two * Creates a float one band image of the a sine waveform in two
* dimensions. * dimensions.

View File

@ -341,11 +341,11 @@ vips_text_init( VipsText *text )
* *
* Optional arguments: * Optional arguments:
* *
* @font: font to render with * * @font: font to render with
* @width: render within this many pixels across * * @width: render within this many pixels across
* @alignment: left/centre/right alignment * * @alignment: left/centre/right alignment
* @dpi: render at this resolution * * @dpi: render at this resolution
* @spacing: space lines by this in points * * @spacing: space lines by this in points
* *
* Draw the string @text to an image. @out is a one-band 8-bit * Draw the string @text to an image. @out is a one-band 8-bit
* unsigned char image, with 0 for no text and 255 for text. Values inbetween * unsigned char image, with 0 for no text and 255 for text. Values inbetween

View File

@ -315,16 +315,16 @@ vips_tonelut_init( VipsTonelut *lut )
* *
* Optional arguments: * Optional arguments:
* *
* @in_max: input range * * @in_max: input range
* @out_max: output range * * @out_max: output range
* @Lb: black-point [0-100] * * @Lb: black-point [0-100]
* @Lw: white-point [0-100] * * @Lw: white-point [0-100]
* @Ps: shadow point (eg. 0.2) * * @Ps: shadow point (eg. 0.2)
* @Pm: mid-tone point (eg. 0.5) * * @Pm: mid-tone point (eg. 0.5)
* @Ph: highlight point (eg. 0.8) * * @Ph: highlight point (eg. 0.8)
* @S: shadow adjustment (+/- 30) * * @S: shadow adjustment (+/- 30)
* @M: mid-tone adjustment (+/- 30) * * @M: mid-tone adjustment (+/- 30)
* @H: highlight adjustment (+/- 30) * * @H: highlight adjustment (+/- 30)
* *
* vips_tonelut() generates a tone curve for the adjustment of image * vips_tonelut() generates a tone curve for the adjustment of image
* levels. It is mostly designed for adjusting the L* part of a LAB image in * levels. It is mostly designed for adjusting the L* part of a LAB image in

View File

@ -246,9 +246,9 @@ vips_xyz_init( VipsXyz *xyz )
* *
* Optional arguments: * Optional arguments:
* *
* @csize: size for third dimension * * @csize: size for third dimension
* @dsize: size for fourth dimension * * @dsize: size for fourth dimension
* @esize: size for fifth dimension * * @esize: size for fifth dimension
* *
* Create a two-band uint32 image where the elements in the first band have the * Create a two-band uint32 image where the elements in the first band have the
* value of their x coordinate and elements in the second band have their y * value of their x coordinate and elements in the second band have their y

View File

@ -106,7 +106,7 @@ vips_zone_init( VipsZone *zone )
* *
* Optional arguments: * Optional arguments:
* *
* @uchar: output a uchar image * * @uchar: output a uchar image
* *
* Create a one-band image of a zone plate. * Create a one-band image of a zone plate.
* *

View File

@ -294,7 +294,7 @@ vips_draw_circlev( VipsImage *image,
* *
* Optional arguments: * Optional arguments:
* *
* @fill: fill the draw_circle * * @fill: fill the draw_circle
* *
* Draws a circle on @image. If @fill is %TRUE then the circle is filled, * Draws a circle on @image. If @fill is %TRUE then the circle is filled,
* otherwise a 1-pixel-wide perimeter is drawn. * otherwise a 1-pixel-wide perimeter is drawn.
@ -330,7 +330,7 @@ vips_draw_circle( VipsImage *image,
* *
* Optional arguments: * Optional arguments:
* *
* @fill: fill the draw_circle * * @fill: fill the draw_circle
* *
* As vips_draw_circle(), but just takes a single double for @ink. * As vips_draw_circle(), but just takes a single double for @ink.
* *

View File

@ -685,12 +685,12 @@ vips_draw_floodv( VipsImage *image,
* *
* Optional arguments: * Optional arguments:
* *
* @test: test this image * * @test: test this image
* @equal: fill while equal to edge * * @equal: fill while equal to edge
* @left: output left edge of bounding box of modified area * * @left: output left edge of bounding box of modified area
* @top: output top edge of bounding box of modified area * * @top: output top edge of bounding box of modified area
* @width: output width of bounding box of modified area * * @width: output width of bounding box of modified area
* @height: output height of bounding box of modified area * * @height: output height of bounding box of modified area
* *
* Flood-fill @image with @ink, starting at position @x, @y. The filled area is * Flood-fill @image with @ink, starting at position @x, @y. The filled area is
* bounded by pixels that are equal to the ink colour, in other words, it * bounded by pixels that are equal to the ink colour, in other words, it
@ -736,12 +736,12 @@ vips_draw_flood( VipsImage *image,
* *
* Optional arguments: * Optional arguments:
* *
* @test: test this image * * @test: test this image
* @equal: fill while equal to edge * * @equal: fill while equal to edge
* @left: output left edge of bounding box of modified area * * @left: output left edge of bounding box of modified area
* @top: output top edge of bounding box of modified area * * @top: output top edge of bounding box of modified area
* @width: output width of bounding box of modified area * * @width: output width of bounding box of modified area
* @height: output height of bounding box of modified area * * @height: output height of bounding box of modified area
* *
* As vips_draw_flood(), but just takes a single double for @ink. * As vips_draw_flood(), but just takes a single double for @ink.
* *

View File

@ -300,7 +300,7 @@ vips_draw_image_init( VipsDrawImage *draw_image )
* *
* Optional arguments: * Optional arguments:
* *
* @mode: how to combine pixels * * @mode: how to combine pixels
* *
* Draw @sub on top of @image at position @x, @y. The two images must have the * Draw @sub on top of @image at position @x, @y. The two images must have the
* same Coding. If @sub has 1 band, the bands will be duplicated to match the * same Coding. If @sub has 1 band, the bands will be duplicated to match the

View File

@ -240,7 +240,7 @@ vips_draw_rectv( VipsImage *image,
* *
* Optional arguments: * Optional arguments:
* *
* @fill: fill the rect * * @fill: fill the rect
* *
* Paint pixels within @left, @top, @width, @height in @image with @ink. If * Paint pixels within @left, @top, @width, @height in @image with @ink. If
* @fill is zero, just paint a 1-pixel-wide outline. * @fill is zero, just paint a 1-pixel-wide outline.
@ -276,7 +276,7 @@ vips_draw_rect( VipsImage *image,
* *
* Optional arguments: * Optional arguments:
* *
* @fill: fill the rect * * @fill: fill the rect
* *
* As vips_draw_rect(), but just take a single double for @ink. * As vips_draw_rect(), but just take a single double for @ink.
* *

View File

@ -187,10 +187,10 @@ vips_foreign_load_csv_init( VipsForeignLoadCsv *csv )
* *
* Optional arguments: * Optional arguments:
* *
* @skip: skip this many lines at start of file * * @skip: skip this many lines at start of file
* @lines: read this many lines from file * * @lines: read this many lines from file
* @whitespace: set of whitespace characters * * @whitespace: set of whitespace characters
* @separator: set of separator characters * * @separator: set of separator characters
* *
* Load a CSV (comma-separated values) file. The output image is always 1 * Load a CSV (comma-separated values) file. The output image is always 1
* band (monochrome), #VIPS_FORMAT_DOUBLE. Use vips_bandfold() to turn * band (monochrome), #VIPS_FORMAT_DOUBLE. Use vips_bandfold() to turn

View File

@ -128,7 +128,7 @@ vips_foreign_save_csv_init( VipsForeignSaveCsv *csv )
* *
* Optional arguments: * Optional arguments:
* *
* @separator: separator string * * @separator: separator string
* *
* Writes the pixels in @in to the @filename as CSV (comma-separated values). * Writes the pixels in @in to the @filename as CSV (comma-separated values).
* The image is written * The image is written

View File

@ -2047,16 +2047,16 @@ vips_foreign_save_dz_init( VipsForeignSaveDz *dz )
* *
* Optional arguments: * Optional arguments:
* *
* @layout; directory layout convention * * @layout; directory layout convention
* @suffix: suffix for tile tiles * * @suffix: suffix for tile tiles
* @overlap; set tile overlap * * @overlap; set tile overlap
* @tile_size; set tile size * * @tile_size; set tile size
* @background: background colour * * @background: background colour
* @depth: how deep to make the pyramid * * @depth: how deep to make the pyramid
* @centre: centre the tiles * * @centre: centre the tiles
* @angle: rotate the image by this much * * @angle: rotate the image by this much
* @container: set container type * * @container: set container type
* @properties: write a properties file * * @properties: write a properties file
* *
* Save an image as a set of tiles at various resolutions. By default dzsave * Save an image as a set of tiles at various resolutions. By default dzsave
* uses DeepZoom layout -- use @layout to pick other conventions. * uses DeepZoom layout -- use @layout to pick other conventions.

View File

@ -1823,8 +1823,8 @@ vips_vipssave( VipsImage *in, const char *filename, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @all_frames: %gboolean, load all frames in sequence * * @all_frames: %gboolean, load all frames in sequence
* @density: string, canvas resolution for rendering vector formats like SVG * * @density: string, canvas resolution for rendering vector formats like SVG
* *
* Read in an image using libMagick, the ImageMagick library. This library can * 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 * read more than 80 file formats, including SVG, BMP, EPS, DICOM and many
@ -1870,8 +1870,8 @@ vips_magickload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @all_frames: %gboolean, load all frames in sequence * * @all_frames: %gboolean, load all frames in sequence
* @density: string, canvas resolution for rendering vector formats like SVG * * @density: string, canvas resolution for rendering vector formats like SVG
* *
* Read an image memory block using libMagick into a VIPS image. Exactly as * Read an image memory block using libMagick into a VIPS image. Exactly as
* vips_magickload(), but read from a memory source. * vips_magickload(), but read from a memory source.
@ -1911,7 +1911,7 @@ vips_magickload_buffer( void *buf, size_t len, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @page: int, load this page * * @page: int, load this page
* *
* Read a TIFF file into a VIPS image. It is a full baseline TIFF 6 reader, * 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, * with extensions for tiled images, multipage images, LAB colour space,
@ -1949,7 +1949,7 @@ vips_tiffload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @page: %gint, load this page * * @page: %gint, load this page
* *
* Read a TIFF-formatted memory block into a VIPS image. Exactly as * Read a TIFF-formatted memory block into a VIPS image. Exactly as
* vips_tiffload(), but read from a memory source. * vips_tiffload(), but read from a memory source.
@ -1989,20 +1989,20 @@ vips_tiffload_buffer( void *buf, size_t len, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @compression: use this #VipsForeignTiffCompression * * @compression: use this #VipsForeignTiffCompression
* @Q: %gint quality factor * * @Q: %gint quality factor
* @predictor: use this #VipsForeignTiffPredictor * * @predictor: use this #VipsForeignTiffPredictor
* @profile: filename of ICC profile to attach * * @profile: filename of ICC profile to attach
* @tile: set %TRUE to write a tiled tiff * * @tile: set %TRUE to write a tiled tiff
* @tile_width: %gint for tile size * * @tile_width: %gint for tile size
* @tile_height: %gint for tile size * * @tile_height: %gint for tile size
* @pyramid: set %TRUE to write an image pyramid * * @pyramid: set %TRUE to write an image pyramid
* @squash: set %TRUE to squash 8-bit images down to 1 bit * * @squash: set %TRUE to squash 8-bit images down to 1 bit
* @miniswhite: set %TRUE to write 1-bit images as MINISWHITE * * @miniswhite: set %TRUE to write 1-bit images as MINISWHITE
* @resunit: #VipsForeignTiffResunit for resolution unit * * @resunit: #VipsForeignTiffResunit for resolution unit
* @xres: %gdouble horizontal resolution in pixels/mm * * @xres: %gdouble horizontal resolution in pixels/mm
* @yres: %gdouble vertical resolution in pixels/mm * * @yres: %gdouble vertical resolution in pixels/mm
* @bigtiff: set %TRUE to write a BigTiff file * * @bigtiff: set %TRUE to write a BigTiff file
* *
* Write a VIPS image to a file as TIFF. * Write a VIPS image to a file as TIFF.
* *
@ -2089,9 +2089,9 @@ vips_tiffsave( VipsImage *in, const char *filename, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @shrink: %gint, shrink by this much on load * * @shrink: %gint, shrink by this much on load
* @fail: %gboolean, fail on warnings * * @fail: %gboolean, fail on warnings
* @autorotate: %gboolean, use exif Orientation tag to rotate the image during load * * @autorotate: %gboolean, use exif Orientation tag to rotate the image during load
* *
* Read a JPEG file into a VIPS image. It can read most 8-bit JPEG images, * Read a JPEG file into a VIPS image. It can read most 8-bit JPEG images,
* including CMYK and YCbCr. * including CMYK and YCbCr.
@ -2167,8 +2167,8 @@ vips_jpegload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @shrink: %gint, shrink by this much on load * * @shrink: %gint, shrink by this much on load
* @fail: %gboolean, fail on warnings * * @fail: %gboolean, fail on warnings
* *
* Read a JPEG-formatted memory block into a VIPS image. Exactly as * Read a JPEG-formatted memory block into a VIPS image. Exactly as
* vips_jpegload(), but read from a memory buffer. * vips_jpegload(), but read from a memory buffer.
@ -2208,15 +2208,15 @@ vips_jpegload_buffer( void *buf, size_t len, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @Q: %gint, quality factor * * @Q: %gint, quality factor
* @profile: filename of ICC profile to attach * * @profile: filename of ICC profile to attach
* @optimize_coding: %gboolean, compute optimal Huffman coding tables * * @optimize_coding: %gboolean, compute optimal Huffman coding tables
* @interlace: %gboolean, write an interlaced (progressive) jpeg * * @interlace: %gboolean, write an interlaced (progressive) jpeg
* @strip: %gboolean, remove all metadata from image * * @strip: %gboolean, remove all metadata from image
* @no-subsample: %gboolean, disable chroma subsampling * * @no-subsample: %gboolean, disable chroma subsampling
* @trellis_quant: %gboolean, apply trellis quantisation to each 8x8 block * * @trellis_quant: %gboolean, apply trellis quantisation to each 8x8 block
* @overshoot_deringing: %gboolean, overshoot samples with extreme values * * @overshoot_deringing: %gboolean, overshoot samples with extreme values
* @optimize_scans: %gboolean, split DCT coefficients into separate scans * * @optimize_scans: %gboolean, split DCT coefficients into separate scans
* *
* Write a VIPS image to a file as JPEG. * Write a VIPS image to a file as JPEG.
* *
@ -2294,15 +2294,15 @@ vips_jpegsave( VipsImage *in, const char *filename, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @Q: JPEG quality factor * * @Q: JPEG quality factor
* @profile: attach this ICC profile * * @profile: attach this ICC profile
* @optimize_coding: compute optimal Huffman coding tables * * @optimize_coding: compute optimal Huffman coding tables
* @interlace: write an interlaced (progressive) jpeg * * @interlace: write an interlaced (progressive) jpeg
* @strip: remove all metadata from image * * @strip: remove all metadata from image
* @no-subsample: disable chroma subsampling * * @no-subsample: disable chroma subsampling
* @trellis_quant: %gboolean, apply trellis quantisation to each 8x8 block * * @trellis_quant: %gboolean, apply trellis quantisation to each 8x8 block
* @overshoot_deringing: %gboolean, overshoot samples with extreme values * * @overshoot_deringing: %gboolean, overshoot samples with extreme values
* @optimize_scans: %gboolean, split DCT coefficients into separate scans * * @optimize_scans: %gboolean, split DCT coefficients into separate scans
* *
* As vips_jpegsave(), but save to a memory buffer. * As vips_jpegsave(), but save to a memory buffer.
* *
@ -2349,14 +2349,14 @@ vips_jpegsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @Q: JPEG quality factor * * @Q: JPEG quality factor
* @profile: attach this ICC profile * * @profile: attach this ICC profile
* @optimize_coding: compute optimal Huffman coding tables * * @optimize_coding: compute optimal Huffman coding tables
* @strip: remove all metadata from image * * @strip: remove all metadata from image
* @no-subsample: disable chroma subsampling * * @no-subsample: disable chroma subsampling
* @trellis_quant: %gboolean, apply trellis quantisation to each 8x8 block * * @trellis_quant: %gboolean, apply trellis quantisation to each 8x8 block
* @overshoot_deringing: %gboolean, overshoot samples with extreme values * * @overshoot_deringing: %gboolean, overshoot samples with extreme values
* @optimize_scans: %gboolean, split DCT coefficients into separate scans * * @optimize_scans: %gboolean, split DCT coefficients into separate scans
* *
* As vips_jpegsave(), but save as a mime jpeg on stdout. * As vips_jpegsave(), but save as a mime jpeg on stdout.
* *
@ -2385,7 +2385,7 @@ vips_jpegsave_mime( VipsImage *in, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @shrink: %gint, shrink by this much on load * * @shrink: %gint, shrink by this much on load
* *
* Read a WebP file into a VIPS image. * Read a WebP file into a VIPS image.
* *
@ -2417,7 +2417,7 @@ vips_webpload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @shrink: %gint, shrink by this much on load * * @shrink: %gint, shrink by this much on load
* *
* Read a WebP-formatted memory block into a VIPS image. Exactly as * Read a WebP-formatted memory block into a VIPS image. Exactly as
* vips_webpload(), but read from a memory buffer. * vips_webpload(), but read from a memory buffer.
@ -2505,12 +2505,12 @@ vips_webpsave( VipsImage *in, const char *filename, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @Q: %gint quality factor * * @Q: %gint quality factor
* @lossless: %gboolean enables lossless compression * * @lossless: %gboolean enables lossless compression
* @preset: #VipsForeignWebpPreset choose lossy compression preset * * @preset: #VipsForeignWebpPreset choose lossy compression preset
* @smart_subsample: %gboolean enables high quality chroma subsampling * * @smart_subsample: %gboolean enables high quality chroma subsampling
* @near_lossless: %gboolean use preprocessing in lossless mode (controlled by Q) * * @near_lossless: %gboolean use preprocessing in lossless mode (controlled by Q)
* @alpha_q: %gint set alpha quality in lossless mode * * @alpha_q: %gint set alpha quality in lossless mode
* *
* As vips_webpsave(), but save to a memory buffer. * As vips_webpsave(), but save to a memory buffer.
* *
@ -2557,12 +2557,12 @@ vips_webpsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @Q: %gint quality factor * * @Q: %gint quality factor
* @lossless: %gboolean enables lossless compression * * @lossless: %gboolean enables lossless compression
* @preset: #VipsForeignWebpPreset choose lossy compression preset * * @preset: #VipsForeignWebpPreset choose lossy compression preset
* @smart_subsample: %gboolean enables high quality chroma subsampling * * @smart_subsample: %gboolean enables high quality chroma subsampling
* @near_lossless: %gboolean use preprocessing in lossless mode (controlled by Q) * * @near_lossless: %gboolean use preprocessing in lossless mode (controlled by Q)
* @alpha_q: %gint set alpha quality in lossless mode * * @alpha_q: %gint set alpha quality in lossless mode
* *
* As vips_webpsave(), but save as a mime webp on stdout. * As vips_webpsave(), but save as a mime webp on stdout.
* *
@ -2623,9 +2623,9 @@ vips_openexrload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @level: load this level * * @level: load this level
* @associated: load this associated image * * @associated: load this associated image
* @autocrop: crop to image bounds * * @autocrop: crop to image bounds
* *
* Read a virtual slide supported by the OpenSlide library into a VIPS image. * Read a virtual slide supported by the OpenSlide library into a VIPS image.
* OpenSlide supports images in Aperio, Hamamatsu, MIRAX, Sakura, Trestle, * OpenSlide supports images in Aperio, Hamamatsu, MIRAX, Sakura, Trestle,
@ -2726,8 +2726,6 @@ vips_fitssave( VipsImage *in, const char *filename, ... )
* @out: decompressed image * @out: decompressed image
* @...: %NULL-terminated list of optional named arguments * @...: %NULL-terminated list of optional named arguments
* *
* Optional arguments:
*
* Read a PNG file into a VIPS image. It can read all png images, including 8- * Read a PNG file into a VIPS image. It can read all png images, including 8-
* and 16-bit images, 1 and 3 channel, with and without an alpha channel. * and 16-bit images, 1 and 3 channel, with and without an alpha channel.
* *
@ -2798,10 +2796,10 @@ vips_pngload_buffer( void *buf, size_t len, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @compression: compression level * * @compression: compression level
* @interlace: interlace image * * @interlace: interlace image
* @profile: ICC profile to embed * * @profile: ICC profile to embed
* @filter: #VipsForeignPngFilter row filter flag(s) * * @filter: #VipsForeignPngFilter row filter flag(s)
* *
* Write a VIPS image to a file as PNG. * Write a VIPS image to a file as PNG.
* *
@ -2854,10 +2852,10 @@ vips_pngsave( VipsImage *in, const char *filename, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @compression: compression level * * @compression: compression level
* @interlace: interlace image * * @interlace: interlace image
* @profile: ICC profile to embed * * @profile: ICC profile to embed
* @filter: libpng row filter flag(s) * * @filter: libpng row filter flag(s)
* *
* As vips_pngsave(), but save to a memory buffer. * As vips_pngsave(), but save to a memory buffer.
* *
@ -2935,9 +2933,9 @@ vips_matload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @page: %gint, load this page, numbered from zero * * @page: %gint, load this page, numbered from zero
* @dpi: %gdouble, render at this DPI * * @dpi: %gdouble, render at this DPI
* @scale: %gdouble, scale render by this factor * * @scale: %gdouble, scale render by this factor
* *
* Render a PDF file into a VIPS image. Rendering uses the libpoppler library * Render a PDF file into a VIPS image. Rendering uses the libpoppler library
* and should be fast. * and should be fast.
@ -2996,9 +2994,9 @@ vips_pdfload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @page: %gint, load this page, numbered from zero * * @page: %gint, load this page, numbered from zero
* @dpi: %gdouble, render at this DPI * * @dpi: %gdouble, render at this DPI
* @scale: %gdouble, scale render by this factor * * @scale: %gdouble, scale render by this factor
* *
* Read a PDF-formatted memory block into a VIPS image. Exactly as * Read a PDF-formatted memory block into a VIPS image. Exactly as
* vips_pdfload(), but read from a memory buffer. * vips_pdfload(), but read from a memory buffer.
@ -3038,8 +3036,8 @@ vips_pdfload_buffer( void *buf, size_t len, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @dpi: %gdouble, render at this DPI * * @dpi: %gdouble, render at this DPI
* @scale: %gdouble, scale render by this factor * * @scale: %gdouble, scale render by this factor
* *
* Render a SVG file into a VIPS image. Rendering uses the librsvg library * Render a SVG file into a VIPS image. Rendering uses the librsvg library
* and should be fast. * and should be fast.
@ -3076,8 +3074,8 @@ vips_svgload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @dpi: %gdouble, render at this DPI * * @dpi: %gdouble, render at this DPI
* @scale: %gdouble, scale render by this factor * * @scale: %gdouble, scale render by this factor
* *
* Read a SVG-formatted memory block into a VIPS image. Exactly as * Read a SVG-formatted memory block into a VIPS image. Exactly as
* vips_svgload(), but read from a memory buffer. * vips_svgload(), but read from a memory buffer.
@ -3117,7 +3115,7 @@ vips_svgload_buffer( void *buf, size_t len, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @page: %ginit, page (frame) to read * * @page: %ginit, page (frame) to read
* *
* Read a GIF file into a VIPS image. Rendering uses the giflib library. * Read a GIF file into a VIPS image. Rendering uses the giflib library.
* *
@ -3152,7 +3150,7 @@ vips_gifload( const char *filename, VipsImage **out, ... )
* *
* Optional arguments: * Optional arguments:
* *
* @page: %ginit, page (frame) to read * * @page: %ginit, page (frame) to read
* *
* Read a GIF-formatted memory block into a VIPS image. Exactly as * Read a GIF-formatted memory block into a VIPS image. Exactly as
* vips_gifload(), but read from a memory buffer. * vips_gifload(), but read from a memory buffer.

View File

@ -156,8 +156,8 @@ vips_foreign_save_ppm_init( VipsForeignSavePpm *ppm )
* *
* Optional arguments: * Optional arguments:
* *
* @ascii: save as ASCII rather than binary * * @ascii: save as ASCII rather than binary
* @squash: squash 8-bit images down to one bit * * @squash: squash 8-bit images down to one bit
* *
* Write a VIPS image to a file as PPM. It can write 1, 8, 16 or * Write a VIPS image to a file as PPM. It can write 1, 8, 16 or
* 32 bit unsigned integer images, float images, colour or monochrome, * 32 bit unsigned integer images, float images, colour or monochrome,

View File

@ -165,7 +165,7 @@ vips_foreign_load_raw_init( VipsForeignLoadRaw *raw )
* *
* Optional arguments: * Optional arguments:
* *
* @offset: offset in bytes from start of file * * @offset: offset in bytes from start of file
* *
* This operation mmaps the file, setting @out so that access to that * This operation mmaps the file, setting @out so that access to that
* image will read from the file. * image will read from the file.

View File

@ -276,7 +276,7 @@ vips_invfft_init( VipsInvfft *invfft )
* *
* Optional arguments: * Optional arguments:
* *
* @real: only output the real part * * @real: only output the real part
* *
* Transform an image from Fourier space to real space. The result is complex. * Transform an image from Fourier space to real space. The result is complex.
* If you are OK with a real result, set @real, it's quicker. * If you are OK with a real result, set @real, it's quicker.

View File

@ -138,7 +138,7 @@ vips_hist_equal_init( VipsHistEqual *equal )
* *
* Optional arguments: * Optional arguments:
* *
* @band: band to equalise * * @band: band to equalise
* *
* Histogram-equalise @in. Equalise using band @bandno, or if @bandno is -1, * Histogram-equalise @in. Equalise using band @bandno, or if @bandno is -1,
* equalise bands independently. * equalise bands independently.

View File

@ -735,7 +735,7 @@ vips_maplut_init( VipsMaplut *maplut )
* *
* Optional arguments: * Optional arguments:
* *
* @band: apply one-band @lut to this band of @in * * @band: apply one-band @lut to this band of @in
* *
* Map an image through another image acting as a LUT (Look Up Table). * Map an image through another image acting as a LUT (Look Up Table).
* The lut may have any type and the output image will be that type. * The lut may have any type and the output image will be that type.

View File

@ -367,10 +367,10 @@ vips_stdif_init( VipsStdif *stdif )
* *
* Optional arguments: * Optional arguments:
* *
* @a: weight of new mean * * @a: weight of new mean
* @m0: target mean * * @m0: target mean
* @b: weight of new deviation * * @b: weight of new deviation
* @s0: target deviation * * @s0: target deviation
* *
* vips_stdif() preforms statistical differencing according to the formula * vips_stdif() preforms statistical differencing according to the formula
* given in page 45 of the book "An Introduction to Digital Image * given in page 45 of the book "An Introduction to Digital Image

View File

@ -1837,8 +1837,8 @@ vips_filename_get_options( const char *vips_filename )
* *
* Optional arguments: * Optional arguments:
* *
* @access: hint #VipsAccess mode to loader * * @access: hint #VipsAccess mode to loader
* @disc: load via a temporary disc file * * @disc: load via a temporary disc file
* *
* vips_image_new_from_file() opens @name for reading. It can load files * vips_image_new_from_file() opens @name for reading. It can load files
* in many image formats, including VIPS, TIFF, PNG, JPEG, FITS, Matlab, * in many image formats, including VIPS, TIFF, PNG, JPEG, FITS, Matlab,

View File

@ -329,11 +329,11 @@ vips_system_init( VipsSystem *system )
* *
* Optional arguments: * Optional arguments:
* *
* @in: array of input images * * @in: array of input images
* @out: output image * * @out: output image
* @in_format: write input files like this * * @in_format: write input files like this
* @out_format: write output filename like this * * @out_format: write output filename like this
* @log: stdout of command is returned here * * @log: stdout of command is returned here
* *
* vips_system() runs a command, optionally passing a set of images in and * vips_system() runs a command, optionally passing a set of images in and
* optionally getting an image back. The command's stdout is returned in @log. * optionally getting an image back. The command's stdout is returned in @log.

View File

@ -149,7 +149,7 @@ vips_labelregions_init( VipsLabelregions *labelregions )
* *
* Optional arguments: * Optional arguments:
* *
* @segments: return number of regions found here * * @segments: return number of regions found here
* *
* Repeatedly scans @in for regions of 4-connected pixels * Repeatedly scans @in for regions of 4-connected pixels
* with the same pixel value. Every time a region is discovered, those * with the same pixel value. Every time a region is discovered, those

View File

@ -1809,8 +1809,8 @@ vips_globalbalance_init( VipsGlobalbalance *globalbalance )
* *
* Optional arguments: * Optional arguments:
* *
* @gamma: gamma of source images * * @gamma: gamma of source images
* @int_output: %TRUE for integer image output * * @int_output: %TRUE for integer image output
* *
* vips_globalbalance() can be used to remove contrast differences in * vips_globalbalance() can be used to remove contrast differences in
* an assembled mosaic. * an assembled mosaic.

View File

@ -328,10 +328,10 @@ vips_match_init( VipsMatch *match )
* *
* Optional arguments: * Optional arguments:
* *
* @search: search to improve tie-points * * @search: search to improve tie-points
* @hwindow: half window size * * @hwindow: half window size
* @harea: half search size * * @harea: half search size
* @interpolate: interpolate pixels with this * * @interpolate: interpolate pixels with this
* *
* Scale, rotate and translate @sec so that the tie-points line up. * Scale, rotate and translate @sec so that the tie-points line up.
* *

View File

@ -171,7 +171,7 @@ vips_merge_init( VipsMerge *merge )
* *
* Optional arguments: * Optional arguments:
* *
* @mblend: maximum blend size * * @mblend: maximum blend size
* *
* This operation joins two images left-right (with @ref on the left) or * This operation joins two images left-right (with @ref on the left) or
* up-down (with @ref above) with a smooth seam. * up-down (with @ref above) with a smooth seam.

View File

@ -324,10 +324,10 @@ vips_mosaic_init( VipsMosaic *mosaic )
* *
* Optional arguments: * Optional arguments:
* *
* @bandno: band to search for features * * @bandno: band to search for features
* @hwindow: half window size * * @hwindow: half window size
* @harea: half search size * * @harea: half search size
* @mblend: maximum blend size * * @mblend: maximum blend size
* *
* This operation joins two images left-right (with @ref on the left) or * This operation joins two images left-right (with @ref on the left) or
* top-bottom (with @ref above) given an approximate overlap. * top-bottom (with @ref above) given an approximate overlap.

View File

@ -635,12 +635,12 @@ vips_mosaic1_init( VipsMosaic1 *mosaic1 )
* *
* Optional arguments: * Optional arguments:
* *
* @search: search to improve tie-points * * @search: search to improve tie-points
* @hwindow: half window size * * @hwindow: half window size
* @harea: half search size * * @harea: half search size
* @interpolate: interpolate pixels with this * * @interpolate: interpolate pixels with this
* @mblend: maximum blend size * * @mblend: maximum blend size
* @bandno: band to search for features * * @bandno: band to search for features
* *
* This operation joins two images top-bottom (with @sec on the right) * This operation joins two images top-bottom (with @sec on the right)
* or left-right (with @sec at the bottom) * or left-right (with @sec at the bottom)

View File

@ -623,12 +623,12 @@ vips_affine_init( VipsAffine *affine )
* *
* Optional arguments: * Optional arguments:
* *
* @interpolate: interpolate pixels with this * * @interpolate: interpolate pixels with this
* @oarea: output rectangle * * @oarea: output rectangle
* @idx: input horizontal offset * * @idx: input horizontal offset
* @idy: input vertical offset * * @idy: input vertical offset
* @odx: output horizontal offset * * @odx: output horizontal offset
* @ody: output vertical offset * * @ody: output vertical offset
* *
* This operator performs an affine transform on an image using @interpolate. * This operator performs an affine transform on an image using @interpolate.
* *

View File

@ -415,7 +415,7 @@ vips_mapim_init( VipsMapim *mapim )
* *
* Optional arguments: * Optional arguments:
* *
* @interpolate: interpolate pixels with this * * @interpolate: interpolate pixels with this
* *
* This operator resamples @in using @index to look up pixels. @out is * This operator resamples @in using @index to look up pixels. @out is
* the same size as @index, with each pixel being fetched from that position in * the same size as @index, with each pixel being fetched from that position in

View File

@ -371,7 +371,7 @@ vips_quadratic_init( VipsQuadratic *quadratic )
* *
* Optional arguments: * Optional arguments:
* *
* @interpolate: use this interpolator (default bilinear) * * @interpolate: use this interpolator (default bilinear)
* *
* This operation is unfinished and unusable, sorry. * This operation is unfinished and unusable, sorry.
* *

View File

@ -146,7 +146,7 @@ vips_reduce_init( VipsReduce *reduce )
* *
* Optional arguments: * Optional arguments:
* *
* @kernel: #VipsKernel to use to interpolate (default: lanczos3) * * @kernel: #VipsKernel to use to interpolate (default: lanczos3)
* *
* Reduce @in by a pair of factors with a pair of 1D interpolators. This * Reduce @in by a pair of factors with a pair of 1D interpolators. This
* will not work well for shrink factors greater than two. * will not work well for shrink factors greater than two.

View File

@ -336,8 +336,8 @@ vips_resize_init( VipsResize *resize )
* *
* Optional arguments: * Optional arguments:
* *
* @vscale: vertical scale factor * * @vscale: vertical scale factor
* @kernel: #VipsKernel to reduce with * * @kernel: #VipsKernel to reduce with
* *
* Resize an image. When upsizing (@scale > 1), the image is simply block * Resize an image. When upsizing (@scale > 1), the image is simply block
* upsized. When downsizing, the * upsized. When downsizing, the

View File

@ -236,13 +236,13 @@ vips_similarity_init( VipsSimilarity *similarity )
* *
* Optional arguments: * Optional arguments:
* *
* @scale: scale by this factor * * @scale: scale by this factor
* @angle: rotate by this many degrees anticlockwise * * @angle: rotate by this many degrees anticlockwise
* @interpolate: interpolate pixels with this * * @interpolate: interpolate pixels with this
* @idx: input horizontal offset * * @idx: input horizontal offset
* @idy: input vertical offset * * @idy: input vertical offset
* @odx: output horizontal offset * * @odx: output horizontal offset
* @ody: output vertical offset * * @ody: output vertical offset
* *
* This operator calls vips_affine() for you, calculating the matrix for the * This operator calls vips_affine() for you, calculating the matrix for the
* affine transform from @scale and @angle. Other parameters are passed on to * affine transform from @scale and @angle. Other parameters are passed on to