Table of Contents

Name

im_cp_desc, im_append_Hist - copy most of an image descriptor to another image descriptor.

Synopsis

#include <vips/vips.h>

int im_cp_desc(image1, image2)
IMAGE *image1, *image2;

int im_append_desc(image1, image2)
IMAGE *image1, *image2;

Description

im_cp_desc(3) copies the fields describing the size, bands, type, resolution, history, and coding from image2 to image1. No other fields are copied.

This function is primarily used in applications where a copy of the details of an image are necessary for a newly created image. Called by most im_functions. Returns an error if an uninitialised IMAGE is copied.

im_append_Hist(3) appends the history attached to image2 to the end of the history on image1. It is used by image processing functions which take more than one image as input, and which need to make sure that all the input history appears in the output.

The first line of image2 history is not copied, as this conventionally holds background information which is not part of the file history.

Return Value

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

Copyright


N. Dessipris

Author

N. Dessipris - 11/04/1990


Table of Contents