#include <gandalf/image/io/image_io.h>
Go to the source code of this file.
Compounds | |
struct | Gan_MovieStruct |
Image sequence structure. More... | |
Typedefs | |
typedef Gan_MovieStruct | Gan_MovieStruct |
Image sequence structure. | |
Functions | |
Gan_MovieStruct * | gan_movie_new (const char *directory, const char *basename, int no_digits, const char *suffix, int first, int no_images, Gan_ImageFileFormat file_format) |
Create new movie structure for image sequence I/O. | |
void | gan_movie_set_step (Gan_MovieStruct *movie, int step) |
Sets step attribute of movie structure. | |
void | gan_movie_set_crop_window (Gan_MovieStruct *movie, int crop_left, int crop_right, int crop_top, int crop_bottom) |
Sets crop window attribute of movie structure. | |
void | gan_movie_free (Gan_MovieStruct *movie) |
Frees a movie structure. | |
char * | gan_movie_image_name (Gan_MovieStruct *movie, int number, char *string, unsigned slen) |
Builds the full name of an image in a movie. | |
Gan_Image * | gan_movie_image_read (Gan_MovieStruct *movie, int number, Gan_Image *image) |
Reads an image from an image sequence. | |
Gan_Bool | gan_movie_image_write (Gan_MovieStruct *movie, int number, Gan_Image *image) |
Writes an image to an image sequence. |
Part of: Gandalf Library
Revision: Last edited: Author:
Copyright: (c) 2000 Imagineer Software Limited
|
Frees a movie structure.
|
|
Builds the full name of an image in a movie.
NULL, the string is malloc()'d and returned; otherwise the provided string is filled and returned. If the string is not long enough, NULL is returned.
slen defines the maximum length of the string, including the null terminator character, i.e. the total size of the string array.
|
|
Reads an image from an image sequence.
NULL a new image is dynamically allocated; otherwise the already allocated image structure is reused.
|
|
Writes an image to an image sequence.
|
|
Create new movie structure for image sequence I/O.
|
|
Sets crop window attribute of movie structure.
|
|
Sets step attribute of movie structure.
|