move conver_disp to deprecated
This commit is contained in:
parent
7430e49f91
commit
84f3fa5b19
@ -25,7 +25,6 @@ libconversion_la_SOURCES = \
|
||||
gaussnoise.c \
|
||||
rot.c \
|
||||
ifthenelse.c \
|
||||
conver_dispatch.c \
|
||||
im_falsecolour.c \
|
||||
msb.c \
|
||||
grid.c \
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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 )
|
||||
{
|
Loading…
Reference in New Issue
Block a user