Table of Contents

Name

im_copy, im_copy_set, im_copy_swap - copy an image

Synopsis

#include <vips/vips.h>

int im_copy(in, out)
IMAGE *in, *out;

int im_copy_set( in, out, type, xres, yres )
IMAGE *in, *out;
int type;
float xres, yres;

int im_copy(in, out)
IMAGE *in, *out;

Description

im_copy(3) copies the image held by the image descriptor in and writes the result to the image descriptor out. The input can be of any size and have any type. Does LABPACK coded images too!

im_copy_set(3) behaves exactly as im_copy(3) , but lets you set informational fields in the header on the way through.

im_copy_swap(3) copies an uncoded image, swapping between SPARC and Intel byte order on the way.

Return Value

The function returns 0 on success and -1 on error.

See Also

im_extract(3) , im_open(3)


Table of Contents