blob: 08b06cee09bfd0cd95d360001360d904f42d5479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef GD_COLOR_H
#define GD_COLOR_H 1
#ifdef __cplusplus
extern "C" {
#endif
int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold);
#ifdef __cplusplus
}
#endif
#endif
|