summaryrefslogtreecommitdiff
path: root/tests/gdimagestring16/gdimagestring16.c
blob: 0ca06680252e3255cf4f6a730f4d65d7d48104bd (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
/**
 * Base test for gdImageString16()
 */
#include <gd.h>
#include <gdfontl.h>
#include "gdtest.h"

int main()
{
	/* Declare the image */
	gdImagePtr im = NULL;
	unsigned short s[2] = {'H', 0};
	int foreground;
	int errorcode = 0;
	gdFontPtr fontptr = gdFontGetLarge();

	im = gdImageCreate(20, 20);
	gdImageColorAllocate(im, 255, 255, 255);
	foreground = gdImageColorAllocate(im, 22, 4, 238);

	gdImageString16(im, fontptr, 2, 2, s, foreground);

	if (!gdAssertImageEqualsToFile("gdimagestring16/gdimagestring16_exp.png", im))
		errorcode = 1;

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

	return errorcode;
}