move conver_disp to deprecated

This commit is contained in:
John Cupitt 2013-06-13 09:36:04 +01:00
parent 7430e49f91
commit 84f3fa5b19
4 changed files with 21 additions and 21 deletions

View File

@ -25,7 +25,6 @@ libconversion_la_SOURCES = \
gaussnoise.c \
rot.c \
ifthenelse.c \
conver_dispatch.c \
im_falsecolour.c \
msb.c \
grid.c \

View File

@ -52,6 +52,26 @@
#include "conversion.h"
/**
* SECTION: conversion
* @short_description: convert images in some way: change band format, change header, insert, extract, join
* @see_also: <link linkend="libvips-resample">resample</link>
* @stability: Stable
* @include: vips/vips.h
*
* These operations convert an image in some way. They can be split into a two
* main groups.
*
* The first set of operations change an image's format in some way. You
* can change the band format (for example, cast to 32-bit unsigned
* int), form complex images from real images, convert images to
* matrices and back, change header fields, and a few others.
*
* The second group move pixels about in some way. You can flip, rotate,
* extract, insert and join pairs of images in various ways.
*
*/
G_DEFINE_ABSTRACT_TYPE( VipsConversion, vips_conversion, VIPS_TYPE_OPERATION );
static int

View File

@ -68,6 +68,7 @@ libdeprecated_la_SOURCES = \
im_vips2png.c \
im_vips2ppm.c \
im_vips2tiff.c \
conver_dispatch.c \
im_vips2dz.c \
matlab.c \
radiance.c \

View File

@ -37,26 +37,6 @@
#include <vips/vips.h>
/**
* SECTION: conversion
* @short_description: convert images in some way: change band format, change header, insert, extract, join
* @see_also: <link linkend="libvips-resample">resample</link>
* @stability: Stable
* @include: vips/vips.h
*
* These operations convert an image in some way. They can be split into a two
* main groups.
*
* The first set of operations change an image's format in some way. You
* can change the band format (for example, cast to 32-bit unsigned
* int), form complex images from real images, convert images to
* matrices and back, change header fields, and a few others.
*
* The second group move pixels about in some way. You can flip, rotate,
* extract, insert and join pairs of images in various ways.
*
*/
static int
system_vec( im_object *argv )
{