LibGd 2.4.0-dev
GD Graphics library
Loading...
Searching...
No Matches
gdfx.h
1#ifndef GDFX_H
2#define GDFX_H 1
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8BGD_DECLARE(gdImagePtr) gdImageSquareToCircle(gdImagePtr im, int radius);
9
10BGD_DECLARE(char *)
11gdImageStringFTCircle(gdImagePtr im, int cx, int cy, double radius, double textRadius,
12 double fillPortion, char *font, double points, char *top, char *bottom,
13 int fgcolor);
14
15BGD_DECLARE(void) gdImageSharpen(gdImagePtr im, int pct);
16
17#ifdef __cplusplus
18}
19#endif
20
21#endif /* GDFX_H */
Write an image as JPEG data to a gdIOCtx.