summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/src/gdfx.h
blob: b00f573a60996fb148cf499c97a56a20a0312b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef GDFX_H
#define GDFX_H 1

#ifdef __cplusplus
extern "C" {
#endif

BGD_DECLARE(gdImagePtr) gdImageSquareToCircle(gdImagePtr im, int radius);

BGD_DECLARE(char *) gdImageStringFTCircle(
    gdImagePtr im,
    int cx,
    int cy,
    double radius,
    double textRadius,
    double fillPortion,
    char *font,
    double points,
    char *top,
    char *bottom,
    int fgcolor);

BGD_DECLARE(void) gdImageSharpen (gdImagePtr im, int pct);

#ifdef __cplusplus
}
#endif

#endif /* GDFX_H */