1#ifdef __cplusplus
2extern "C" {
3#endif
4
5#ifndef GDFX_H
6#define GDFX_H 1
7
8BGD_DECLARE(gdImagePtr) gdImageSquareToCircle(gdImagePtr im, int radius);
9
10BGD_DECLARE(char *) gdImageStringFTCircle(
11 gdImagePtr im,
12 int cx,
13 int cy,
14 double radius,
15 double textRadius,
16 double fillPortion,
17 char *font,
18 double points,
19 char *top,
20 char *bottom,
21 int fgcolor);
22
23BGD_DECLARE(void) gdImageSharpen (gdImagePtr im, int pct);
24
25#endif /* GDFX_H */
26
27
28#ifdef __cplusplus
29}
30#endif
31