ifw-odp 5.1.1
 
Loading...
Searching...
No Matches
clipm_image_display.h
Go to the documentation of this file.
1
5
6#ifndef CLIPM_IMAGE_DISPLAY_H
7#define CLIPM_IMAGE_DISPLAY_H
8
9/*-----------------------------------------------------------------------------
10 Includes
11 -----------------------------------------------------------------------------*/
12
13#include <cpl.h>
14
15/*-----------------------------------------------------------------------------
16 Declaration Block
17 -----------------------------------------------------------------------------*/
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*-----------------------------------------------------------------------------
24 Types
25 -----------------------------------------------------------------------------*/
26
35
37typedef unsigned int clipm_fill_mode;
38
59
61
62/*-----------------------------------------------------------------------------
63 Prototypes
64 -----------------------------------------------------------------------------*/
65
67 const cpl_image *input,
68 cpl_size x_input_position,
69 cpl_size y_input_position,
70 cpl_size x_segmentsize,
71 cpl_size y_segmentsize,
72 cpl_size x_gapwidth,
73 cpl_size y_gapwidth,
74 int flag_gaps_bad,
75 clipm_fill_mode fill_pattern,
76 double fill_brightness);
77
78/*----------------------------------------------------------------------------*/
79
80#ifdef __cplusplus
81} /* extern "C" */
82#endif
83
84#endif /* CLIPM_IMAGE_DISPLAY_H */
const clipm_fill_mode CLIPM_FILL_DSTRIPES
Fill with 45` diagonal stripes of foreground over background.
Definition clipm_image_display.c:46
const clipm_fill_mode CLIPM_FILL_VALUE
Fill with given value.
Definition clipm_image_display.c:40
unsigned int clipm_fill_mode
Fill mode type.
Definition clipm_image_display.h:37
const clipm_fill_mode CLIPM_FILL_HSTRIPES
Fill with horizontal stripes of foreground and background.
Definition clipm_image_display.c:44
const clipm_fill_mode CLIPM_FILL_BWRASTER
Fill with raster of foreground and background.
Definition clipm_image_display.c:43
const clipm_fill_mode CLIPM_FILL_VSTRIPES
Fill with vertical stripes of foreground and background.
Definition clipm_image_display.c:45
const clipm_fill_mode CLIPM_FILL_FOREGROUND
Fill with foreground.
Definition clipm_image_display.c:41
const clipm_fill_mode CLIPM_FILL_DCAROS
Fill with diagonal caros.
Definition clipm_image_display.c:49
const clipm_fill_mode CLIPM_FILL_CAROS
Fill with caros.
Definition clipm_image_display.c:48
const clipm_fill_mode CLIPM_FILL_DSTRIPES2
Fill with 135` diagonal stripes of foreground over background.
Definition clipm_image_display.c:47
const clipm_fill_mode CLIPM_FILL_BACKGROUND
Fill with background.
Definition clipm_image_display.c:42
cpl_image * clipm_image_display_insert_gaps(const cpl_image *input, cpl_size x_input_position, cpl_size y_input_position, cpl_size x_segmentsize, cpl_size y_segmentsize, cpl_size x_gapwidth, cpl_size y_gapwidth, int flag_gaps_bad, clipm_fill_mode fill_pattern, double fill_brightness)
Insert horizontal and vertical gaps into an image.
Definition clipm_image_display.c:197