#include <stdlib.h>
#include <gandalf/common/misc_defs.h>
#include <gandalf/image/image_defs.h>
Go to the source code of this file.
Defines | |
#define | GAN_PIXEL unsigned char |
#define | GAN_PIXEL_FORMAT grey-level |
#define | GAN_PIXEL_TYPE unsigned char |
#define | GAN_IMTYPE uc |
#define | GAN_IMAGE_FORM_GEN gan_image_form_gen_gl_uc |
#define | GAN_IMAGE_SET_GEN gan_image_set_gen_gl_uc |
#define | GAN_IMAGE_ALLOC gan_image_alloc_gl_uc |
#define | GAN_IMAGE_ALLOC_DATA gan_image_alloc_data_gl_uc |
#define | GAN_IMAGE_FORM gan_image_form_gl_uc |
#define | GAN_IMAGE_FORM_DATA gan_image_form_data_gl_uc |
#define | GAN_IMAGE_SET gan_image_set_gl_uc |
#define | GAN_IMAGE_SET_PIX gan_image_set_pix_gl_uc |
#define | GAN_IMAGE_GET_PIX gan_image_get_pix_gl_uc |
#define | GAN_IMAGE_GET_PIXPTR gan_image_get_pixptr_gl_uc |
#define | GAN_IMAGE_GET_PIXARR gan_image_get_pixarr_gl_uc |
#define | GAN_IMAGE_FILL_CONST gan_image_fill_const_gl_uc |
#define | GAN_IMAGE_GET_ACTIVE_SUBWINDOW gan_image_get_active_subwindow_gl_uc |
#define | GAN_IMAGE_MASK_WINDOW gan_image_mask_window_gl_uc |
#define | GAN_IMAGE_CLEAR_WINDOW gan_image_clear_window_gl_uc |
#define | GAN_IMAGE_GET_MINIMUM_PIXEL gan_image_get_minimum_pixel_gl_uc |
#define | GAN_IMAGE_GET_MAXIMUM_PIXEL gan_image_get_maximum_pixel_gl_uc |
Functions | |
Gan_Image * | gan_image_alloc_gl_uc (unsigned long height, unsigned long width) |
Macro: Allocate and return a new grey-level image with type unsigned char. | |
Gan_Image * | gan_image_form_gl_uc (Gan_Image *img, unsigned long height, unsigned long width) |
Macro: Forms and returns a new grey-level unsigned char image. | |
Gan_Image * | gan_image_alloc_data_gl_uc (unsigned long height, unsigned long width, unsigned long stride, unsigned char *pix_data, size_t pix_data_size, unsigned char **row_data, size_t row_data_size) |
Macro: Allocates and returns a new grey-level unsigned char image. | |
Gan_Image * | gan_image_form_data_gl_uc (Gan_Image *img, unsigned long height, unsigned long width, unsigned long stride, unsigned char *pix_data, size_t pix_data_size, unsigned char **row_data, size_t row_data_size) |
Macro: Forms and returns a new grey-level unsigned char image. | |
Gan_Image * | gan_image_set_gl_uc (Gan_Image *img, unsigned long height, unsigned long width) |
Macro: Set an existing image to be grey-level with type unsigned char. | |
Gan_Bool | gan_image_set_pix_gl_uc (Gan_Image *img, unsigned row, unsigned col, unsigned char pix) |
Macro: Set a pixel in a grey-level unsigned char image. | |
unsigned char | gan_image_get_pix_gl_uc (const Gan_Image *img, unsigned row, unsigned col) |
Macro: Return a pixel from a grey-level unsigned char image. | |
Gan_Bool | gan_image_fill_const_gl_uc (Gan_Image *img, unsigned char pix) |
Macro: Fills all the pixels in a grey-level unsigned char image. |
Part of: Gandalf Library