summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/tests/gdimagestringup/gdimagestringup.c
blob: 0832bd79072345bb4c1291e57c9cba727c0192ae (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
/**
 * Base test for gdImageStringUp()
 */
#include <gd.h>
#include <gdfontl.h>
#include "gdtest.h"
#include <string.h>

int main()
{
	/* Declare the image */
	gdImagePtr im = NULL;
	char *s = "Hello gd";
	int errorcode = 0;
	int foreground;
	gdFontPtr fontptr = gdFontGetLarge();

	im = gdImageCreate(50, 100);
	gdImageColorAllocate(im, 202, 202, 0);
	foreground = gdImageColorAllocate(im, 22, 4, 238);

	gdImageStringUp(im, fontptr,
			im->sx / 2 - fontptr->h / 2,
			im->sy / 2 + (strlen(s) * fontptr->w / 2),
			(unsigned char*)s, foreground);

	if (!gdAssertImageEqualsToFile("gdimagestringup/gdimagestringup_exp.png", im))
		errorcode = 1;

	/* Destroy the image im memory */
	gdImageDestroy(im);

	return errorcode;
}