summaryrefslogtreecommitdiff
path: root/src/testtr.c
blob: ed1b374a8e8ced8a15f4d388b8edd81a16cd3f0a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */

#include <stdio.h>
#include "gd.h"

#define FALSE 0
#define TRUE (!FALSE)

int
main(void)
{
	int transparent, green, black;
	gdImagePtr im;

	im = gdImageCreateTrueColor(100,100);

	black =  gdImageColorResolveAlpha(im, 0, 0, 0, gdAlphaOpaque);
	green =  gdImageColorResolveAlpha(im, 0, gdGreenMax, 0, gdAlphaOpaque);
	transparent = gdImageColorResolveAlpha(im,
					       gdRedMax-1, gdGreenMax, gdBlueMax, gdAlphaTransparent);
	gdImageColorTransparent(im, transparent);

	/* Blending must be off to lay a transparent basecolor.
		    Nothing to blend with anyway. */
	gdImageAlphaBlending(im, FALSE);
	gdImageFill (im, im->sx/2, im->sy/2, transparent);
	/* Blend everything else together,
		especially fonts over non-transparent backgrounds */
	gdImageAlphaBlending(im, TRUE);

	gdImageFilledRectangle (im, 30, 30, 70, 70, green);
	gdImageStringFT (im, NULL, black, "Times", 18, 0, 50, 50, "Hello");

	gdImageSaveAlpha (im, TRUE);
#ifdef HAVE_LIBPNG
	{
		FILE *out = fopen("testtr.png", "wb");
		gdImagePng(im, out);
		fclose(out);
	}
#else
	fprintf(stderr, "Compiled without libpng support\n");
#endif /* HAVE_LIBPNG */
	gdImageDestroy (im);

	return 0;
}